diff options
Diffstat (limited to 'api/pluginapi.h')
-rw-r--r-- | api/pluginapi.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/api/pluginapi.h b/api/pluginapi.h index 432b2d2..cce9605 100644 --- a/api/pluginapi.h +++ b/api/pluginapi.h @@ -5,6 +5,15 @@ #define GLOBAL_ACCESS_FLAG 0x0010 +typedef INT_PTR (*SERVICE)(WPARAM,LPARAM); + +typedef struct tagPLUGINLINK { + HANDLE (*CreateServiceFunction)(const char *,SERVICE); + INT_PTR (*CallService)(const char *,WPARAM,LPARAM); + int (*ServiceExists)(const char *); +} PLUGINLINK; + + typedef struct { int cbSize; |