#include #include long long return_longlong() { return 1099511627776LL; } std::wstring return_wstring() { return L"abcde"; } BOOST_PYTHON_MODULE(typetypo_ext) { using namespace boost::python; def("return_longlong", return_longlong); def("return_wstring", return_wstring); }