diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-23 18:31:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-23 18:31:30 (GMT) |
commit | e093bdade050419290a1535ced1ca11fe7f8a2d5 (patch) | |
tree | 8cac557b991fedf6c2e65622f1ae56c94cb6d8af /Source/cmCPluginAPI.h | |
parent | 296ded5e4dcb8deef6db6ab30ca357c9b62b32b0 (diff) | |
download | CMake-e093bdade050419290a1535ced1ca11fe7f8a2d5.zip CMake-e093bdade050419290a1535ced1ca11fe7f8a2d5.tar.gz CMake-e093bdade050419290a1535ced1ca11fe7f8a2d5.tar.bz2 |
ENH: Fix compatibility
Diffstat (limited to 'Source/cmCPluginAPI.h')
-rw-r--r-- | Source/cmCPluginAPI.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmCPluginAPI.h b/Source/cmCPluginAPI.h index ac2bfa3..35056c3 100644 --- a/Source/cmCPluginAPI.h +++ b/Source/cmCPluginAPI.h @@ -57,8 +57,6 @@ typedef struct void (*SetClientData) (void *info, void *cd); /* when an error occurs, call this function to set the error string */ void (*SetError) (void *info, const char *err); - /* display status information */ - void (*DisplaySatus) (void *info, const char *message); /*========================================================================= The following functions all directly map to methods in the cmMakefile @@ -160,6 +158,9 @@ typedef struct int numArgs, const char **args, int commandType); + /* display status information */ + void (*DisplaySatus) (void *info, const char *message); + /* this is the end of the C function stub API structure */ } cmCAPI; |