1234567891011121314151617181920212223242526272829 |
- #ifdef RUNPYTHON_EXPORTS
- #define RUNPYTHON_API __declspec(dllexport)
- #else
- #define RUNPYTHON_API __declspec(dllimport)
- #endif
- class RUNPYTHON_API CRunPython {
- public:
- CRunPython(void);
-
- };
- extern RUNPYTHON_API int nRunPython;
- RUNPYTHON_API int RunPython(LPCTSTR lpScriptFile, LPCTSTR lpExtraSentence);
- RUNPYTHON_API int RunPythonEx(LPCTSTR lpScriptFile, LPCTSTR lpExtraSentence);
- RUNPYTHON_API int CallPython(LPCTSTR lpScriptFile, LPCTSTR lpCommand);
- RUNPYTHON_API int CallPythonEx(LPCTSTR lpScriptFile, LPCTSTR lpCommand);
|