blob: b98829f632fd3b999c6654a9e4adc3683d3f867c (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|