From b50a786c2758a34eff01a491ef103bd5a053ba90 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Tue, 19 Oct 2010 05:17:48 +0300 Subject: do not use wxwidgets in core, boost and ace choosen for core development --- api/ec_pluginapi.h | 29 +++++++++++++++++++++++++++++ api/pluginapi.h | 29 ----------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 api/ec_pluginapi.h delete mode 100644 api/pluginapi.h (limited to 'api') diff --git a/api/ec_pluginapi.h b/api/ec_pluginapi.h new file mode 100644 index 0000000..3e9649b --- /dev/null +++ b/api/ec_pluginapi.h @@ -0,0 +1,29 @@ +#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 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 -- cgit v1.2.3