summaryrefslogtreecommitdiffstats
path: root/Source/cmCPluginAPI.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-23 18:57:24 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-23 18:57:24 (GMT)
commitbafeb6974236c49f0c520cb7f49719312a665385 (patch)
tree773d459b865596a2a165365e1f45bd2e936df61c /Source/cmCPluginAPI.h
parentd59d94ff6aab48c5ab8ef13f9d47b1a379f87444 (diff)
downloadCMake-bafeb6974236c49f0c520cb7f49719312a665385.zip
CMake-bafeb6974236c49f0c520cb7f49719312a665385.tar.gz
CMake-bafeb6974236c49f0c520cb7f49719312a665385.tar.bz2
cleaned up API
Diffstat (limited to 'Source/cmCPluginAPI.h')
-rw-r--r--Source/cmCPluginAPI.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.h b/Source/cmCPluginAPI.h
index d7ba6d4..ba76eff 100644
--- a/Source/cmCPluginAPI.h
+++ b/Source/cmCPluginAPI.h
@@ -172,7 +172,6 @@ define the different types of compiles a library may be
Finally we define the key data structures and function prototypes
=========================================================================*/
typedef const char* (*CM_DOC_FUNCTION)();
- typedef const char* (*CM_NAME_FUNCTION)();
typedef int (*CM_INITIAL_PASS_FUNCTION)(void *info, void *mf,
int argc, char *[]);
typedef void (*CM_FINAL_PASS_FUNCTION)(void *info, void *mf);
@@ -188,6 +187,7 @@ Finally we define the key data structures and function prototypes
CM_DESTRUCTOR_FUNCTION Destructor;
CM_DOC_FUNCTION GetTerseDocumentation;
CM_DOC_FUNCTION GetFullDocumentation;
+ const char *Name;
void *ClientData;
} cmLoadedCommandInfo;