win python support

This commit is contained in:
Vitor Santoss Costa
2017-06-14 12:34:12 +01:00
parent e68630cd8a
commit 3a06d4fecb
8 changed files with 36 additions and 38 deletions

View File

@@ -1,10 +1,16 @@
#include "py4yap.h"
X_API bool init_python(void) {
return true;
}
X_API bool init_python_dll(void);
X_API bool init_python_dll(void)
{
do_init_python();
return 1;
}
#ifdef _WIN32
#include <windows.h>