diff options
Diffstat (limited to 'api/pluginapi.h')
-rw-r--r-- | api/pluginapi.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/api/pluginapi.h b/api/pluginapi.h deleted file mode 100644 index 3e9649b..0000000 --- a/api/pluginapi.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef PLUGINAPI_H_INCLUDED
-#define PLUGINAPI_H_INCLUDED
- -/* -this is genereic plugin api header, only baisc c/c++ here -we need to support also non wxwidgets plugins -*/ - - -typedef void* (*SERVICE)(void*); - - -typedef struct -{ - 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; - -}PLUGININFO;
-
-
-#endif // PLUGINAPI_H_INCLUDED
|