diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-15 08:53:21 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-15 08:53:21 +0300 |
commit | 7890dccf61ba5e92d76e79c121b926ac515d6747 (patch) | |
tree | 52b74bdb31abbf0e18fde416683fe57e3a79807c /core/main.cpp | |
parent | 076c9cfcf33e06218805ad0412a806005c3c63f7 (diff) |
services
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 { |