00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifdef WIN32
00010 #ifdef CQUANTIZE_EXPORTS
00011 #define CQUANTIZE_API extern "C" __declspec(dllexport)
00012 #else
00013 #define CQUANTIZE_API extern "C" __declspec(dllimport)
00014 #endif
00015 #include <windows.h>
00016 #else // WIN32
00017 #define CQUANTIZE_API extern "C"
00018 #endif
00019
00020 CQUANTIZE_API void initcQuantize(void);
00021
00022 #ifdef _DEBUG
00023 #ifndef BOOST_PYTHON_DEBUG
00024 #undef _DEBUG
00025 #endif
00026 #include <Python.h>
00027 #define _DEBUG
00028 #else
00029 #include <Python.h>
00030 #endif