diff options
Diffstat (limited to 'api/ec_pluginapi.h')
-rw-r--r-- | api/ec_pluginapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/ec_pluginapi.h b/api/ec_pluginapi.h index 7f13634..e58b55a 100644 --- a/api/ec_pluginapi.h +++ b/api/ec_pluginapi.h @@ -38,7 +38,7 @@ typedef struct void* (*CallService)(const char *,void*); bool (*ServiceExists)(const char *); bool (*RegisterEventHandler)(int, EVENT_HANDLER); - int (*RegisterEventType)(int); + int (*RegisterEventType)(int, int); //event type, special id } PLUGINLINK; typedef struct @@ -46,7 +46,7 @@ typedef struct // int size; wchar_t *name, *description, *author, *authoremail; unsigned long version; - int pluginid; //will be set by core, neede to call some core services + int pluginid; //special id will be set by core, neede to call some core services }PLUGININFO;
|