diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2011-03-16 14:06:26 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2011-03-16 14:06:26 +0200 |
commit | 7041ab5d41644bc3310b5c16b9c0aa3818a03d10 (patch) | |
tree | e3cab3306b88a72cd32e13bb4baa192f7d775e65 /api/ec_pluginapi.h | |
parent | 01212a19ce05aaa27ff33dae06bed646e7a65535 (diff) |
skeleton for events handler
functions return type correction
Diffstat (limited to 'api/ec_pluginapi.h')
-rw-r--r-- | api/ec_pluginapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/api/ec_pluginapi.h b/api/ec_pluginapi.h index 4176819..50bb776 100644 --- a/api/ec_pluginapi.h +++ b/api/ec_pluginapi.h @@ -35,7 +35,9 @@ typedef struct { void (*CreateServiceFunction)(const char *,SERVICE); void* (*CallService)(const char *,void*); - int (*ServiceExists)(const char *); + bool (*ServiceExists)(const char *); + bool (*RegisterEventHandler)(void*); + bool (*RegisterEventType)(int); } PLUGINLINK; typedef struct |