summaryrefslogtreecommitdiff
path: root/api/pluginapi.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
commit42992bc2c04dcfd322ead3fda1134439a2cfcf3a (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /api/pluginapi.h
parent599d73442416d9bad663e4d0900265e073946600 (diff)
cleanup, switching to wxwidgets as main development framework
Diffstat (limited to 'api/pluginapi.h')
-rw-r--r--api/pluginapi.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/api/pluginapi.h b/api/pluginapi.h
deleted file mode 100644
index 2bcc480..0000000
--- a/api/pluginapi.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef PLUGINAPI_H
-#define PLUGINAPI_H
-
-#define PLUGIN_MAKE_VERSION(a,b,c,d) (((((DWORD)(a))&0xFF)<<24)|((((DWORD)(b))&0xFF)<<16)|((((DWORD)(c))&0xFF)<<8)|(((DWORD)(d))&0xFF))
-
-#define F_GLOBAL_ACCESS 0x0010
-#define F_DB_PLUGIN 0x0001 //database plugin, can be only one at one time
-
-typedef INT_PTR (*SERVICE)(WPARAM,LPARAM);
-
-typedef struct tagPLUGINLINK
-{
-//core api
- HANDLE (*CreateServiceFunction)(const char *,SERVICE);
- INT_PTR (*CallService)(const char *,WPARAM,LPARAM);
- int (*ServiceExists)(const char *);
-} PLUGINLINK;
-
-
-typedef struct
-{ //plugin description
- int cbSize;
- char *shortName, *description, *author, *authorEmail;
- DWORD version;
- WORD flags;
-} PLUGININFO;
-#endif