diff options
Diffstat (limited to 'core/main.cpp')
-rw-r--r-- | core/main.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/main.cpp b/core/main.cpp index 20b8501..716b7b0 100644 --- a/core/main.cpp +++ b/core/main.cpp @@ -1,8 +1,14 @@ #include "commonheaders.h" +std::list<plugin*> plugins; +std::list<service*> services; +void CreateServiceFunction(const char* name, SERVICE svc); +void* CallService(const char *,void*); +int ServiceExists(const char *); -PLUGINLINK pluglink; + +PLUGINLINK pluglink = {&CreateServiceFunction, &CallService, &ServiceExists}; class EvilCore: public wxApp { |