iceman50

Untitled

Jan 9th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.54 KB | None | 0 0
  1. /* Plugin meta data */
  2. typedef struct tagMetaData {
  3.         const char* name;                                                                                       /* Name of the plugin */
  4.         const char* author;                                                                                     /* Name/Nick of the plugin author */
  5.         const char* description;                                                                        /* *Short* description of plugin functionality (may be multiple lines) */
  6.         const char* web;                                                                                        /* Authors website if any */
  7.         const char* guid;                                                                                       /* Plugins unique GUID */
  8.         const char** dependencies;                                                                      /* Array of plugin dependencies */
  9.         uint32_t numDependencies;                                                                       /* Number of plugin GUIDs in dependencies array */
  10.         double version;                                                                                         /* Plugin version */
  11.         double apiVersion;                                                                                      /* API version the plugin was compiled against */
  12.         double compatibleVersion;                                                                       /* Earliest API version the plugin can be used with */
  13. } MetaData, *MetaDataPtr;
Advertisement
Add Comment
Please, Sign In to add comment