summaryrefslogtreecommitdiffstats
path: root/Source/cmCPluginAPI.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-12-17 22:05:59 (GMT)
committerBrad King <brad.king@kitware.com>2002-12-17 22:05:59 (GMT)
commit10931b5e66452f6f6af05dbeecbf2c7108391fdb (patch)
treeaa41c458a2e5235fe382997693e8356c968d5994 /Source/cmCPluginAPI.h
parent3303599c7586bffa39b6ec79f885c3f008bca702 (diff)
downloadCMake-10931b5e66452f6f6af05dbeecbf2c7108391fdb.zip
CMake-10931b5e66452f6f6af05dbeecbf2c7108391fdb.tar.gz
CMake-10931b5e66452f6f6af05dbeecbf2c7108391fdb.tar.bz2
ENH: Added return type int to ExecuteCommand.
Diffstat (limited to 'Source/cmCPluginAPI.h')
-rw-r--r--Source/cmCPluginAPI.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCPluginAPI.h b/Source/cmCPluginAPI.h
index cf830cd..8f085fa 100644
--- a/Source/cmCPluginAPI.h
+++ b/Source/cmCPluginAPI.h
@@ -84,8 +84,8 @@ typedef struct
int all, int numDepends, const char **depends,
int numOutputs, const char **outputs);
int (*CommandExists) (void *mf, const char* name);
- void (*ExecuteCommand) (void *mf, const char *name,
- int numArgs, const char **args);
+ int (*ExecuteCommand) (void *mf, const char *name,
+ int numArgs, const char **args);
void (*ExpandSourceListArguments) (void *mf,int argc, const char **argv,
int *resArgc, char ***resArgv,
unsigned int startArgumentIndex);