Python调用C++的dll的windows Error

参考文章一:http://www.oschina.net/question/234345_48628
参考文章二:http://blog.sina.com.cn/s/blog_6982136301010rsj.html

Python调用C++的dll的windows Error

当Python调用C++的dll时出现如下错误:
WindowsError: [Error 193] %1 is not a valid Win32 application in Python
原因在于:使用python是64位,但在写dll时编译时用的不是x64,结果会出现错误的win32提示。

你可能感兴趣的:(Python)