123456789101112131415161718192021222324252627282930 |
- #ifdef RUNPYTHON_EXPORTS
- #define RUNPYTHON_API __declspec(dllexport)
- #else
- #define RUNPYTHON_API __declspec(dllimport)
- #endif
- RUNPYTHON_API DWORD RunPyScript(LPCTSTR lpScriptFile, LPCTSTR lpExtraSentence, LPCTSTR lpScriptLog, BOOL bSubProcess);
- RUNPYTHON_API bool StopPyScript(DWORD dwScriptId, BOOL bSubProcess);
- RUNPYTHON_API bool IsPyScriptOver(DWORD dwScriptId, BOOL bSubProcess);
- RUNPYTHON_API void CleanPyScript(DWORD dwScriptId);
|