diff options
Diffstat (limited to 'api/api.h')
-rw-r--r-- | api/api.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#ifndef API_H +#define API_H +#ifdef __cplusplus +extern "C" { +#endif +__declspec(dllexport) void GetPluginInfo(PluginInfo* pPluginInfo, DWORD *pdwResult); +__declspec(dllexport) void PluginHandler(DWORD dwCode, HostInfo *pHostInfo, DWORD *pdwResult); +#ifdef __cplusplus +} +#endif +#endif //API_H + |