diff options
Diffstat (limited to 'api/ec_pluginapi.h')
-rw-r--r-- | api/ec_pluginapi.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/api/ec_pluginapi.h b/api/ec_pluginapi.h index 3e9649b..0387a16 100644 --- a/api/ec_pluginapi.h +++ b/api/ec_pluginapi.h @@ -12,17 +12,16 @@ typedef void* (*SERVICE)(void*); typedef struct { - void (*CreateServiceFunction)(const char *,SERVICE); - void* (*CallService)(const char *,void*); - int (*ServiceExists)(const char *); + void (*CreateServiceFunction)(const char *,SERVICE); + void* (*CallService)(const char *,void*); + int (*ServiceExists)(const char *); } PLUGINLINK; typedef struct { - int size; - wchar_t *name, *description, *author, *authoremail; - unsigned long version; - + int size; + wchar_t *name, *description, *author, *authoremail; + unsigned long version; }PLUGININFO;
|