diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-02 00:47:12 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-02 00:47:12 +0300 |
commit | 952247ad9720ca579d2f6eac596896bc2cddfe6b (patch) | |
tree | 35d160c153cd277fb56ae8e5a7c954da7600e150 /api | |
parent | f404e3a3a7ecaf77502ee8fc992dbcce3ed0082c (diff) |
modified: ../api/pluginapi.h
modified: main.cpp
modified: plugin.h
modified: ../modules/example/main.cpp
Diffstat (limited to 'api')
-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; |