2010-07-06 22:49:02 +08:00
|
|
|
// stdafx.h : include file for standard system include files,
|
|
|
|
// or project specific include files that are used frequently, but
|
|
|
|
// are changed infrequently
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-05-13 17:54:40 +08:00
|
|
|
#include "targetver.h"
|
2010-07-06 22:49:02 +08:00
|
|
|
|
2013-05-13 17:54:40 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
2010-07-06 22:49:02 +08:00
|
|
|
// Windows Header Files:
|
|
|
|
#include <windows.h>
|
2012-08-08 16:01:25 +08:00
|
|
|
|
2016-03-14 17:54:28 +08:00
|
|
|
//#define BOOST_PYTHON_STATIC_MODULE
|
|
|
|
//#define BOOST_PYTHON_STATIC_LIB
|
2011-09-15 22:16:20 +08:00
|
|
|
|
|
|
|
#pragma warning(push)
|
|
|
|
// 'return' : conversion from 'Py_ssize_t' to 'unsigned int', possible loss of data
|
|
|
|
#pragma warning(disable:4244)
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
#include <boost/python/object.hpp>
|
|
|
|
#include <boost/python/module.hpp>
|
2016-09-14 02:17:41 +08:00
|
|
|
#include <boost/python/raw_function.hpp>
|
2011-09-15 22:16:20 +08:00
|
|
|
#pragma warning(pop)
|
2013-05-13 17:54:40 +08:00
|
|
|
|
2011-09-17 01:13:40 +08:00
|
|
|
namespace python = boost::python;
|
2011-11-16 14:42:00 +08:00
|
|
|
|
2013-05-13 17:54:40 +08:00
|
|
|
|
|
|
|
|