diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-01 14:49:28 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-01 14:49:28 +0300 |
commit | ebcf5ee1991c4815eb31674653e7d2e9036ab760 (patch) | |
tree | 8bacb749e3abe8d68ec2e1f6585f4925511f5c35 /api | |
parent | 263892c3b18be3cfa0e749fe2e8b9703e6e30c16 (diff) |
modified: api/api.h
new file: core/Makefile
modified: core/main.cpp
new file: modules/example/Makefile
modified: modules/example/main.cpp
Diffstat (limited to 'api')
-rw-r--r-- | api/api.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -3,6 +3,18 @@ #ifdef __cplusplus extern "C" { #endif + +struct PluginInfo +{ +// DWORD dwPluginType; //unused for now + char *szPluginName; +}; + +struct HostInfo +{ + DWORD dwVersion; +}; + __declspec(dllexport) void GetPluginInfo(PluginInfo* pPluginInfo, DWORD *pdwResult); __declspec(dllexport) void PluginHandler(DWORD dwCode, HostInfo *pHostInfo, DWORD *pdwResult); #ifdef __cplusplus |