標籤:
本文針對Windows平台下,python調取C/C++的dll檔案。
1.如果使用C語言,代碼如下,檔案名稱為test.c。
__declspec(dllexport) int sum(int a,int b){ return (a + b);}
如果使用C++語言,代碼如下,檔案名稱為test_cpp.cpp。
#define DLLEXPORT extern "C" __declspec(dllexport)DLLEXPORT int sum(int a,int b){ return a + b;}
在Windows平台下,__declspec(dllexport)是必須要添加的。
2.函數的聲明可以放到test.h標頭檔中(但不是必須的):
//test.hint sum(int,int)
3.編譯產生dll檔案。
在Visual Studio中,產生的dll檔案有32bit和64bit兩種,需要和python的版本對應上,否則將會報出“WindowsError: [Error 193] %1 不是有效 Win32”這個錯誤,如所示。
我的本機上python為python 2.7.9(64bit),因此需要在Visual Studio中將工程屬性設定為64位的。設定步驟如下所示,相應的64位dll在x64目錄下產生。
由於有的電腦上並沒有安裝C++ Run Time,如只安裝32bit的python,依然載入不了32位的dll,會報出如下錯誤,“WindowsError: [Error 126] ”
參考http://stackoverflow.com/questions/10411709/windowserror-error-126-when-loading-a-dll-with-ctypes這個連結,需要將運行庫改為“MT”模式。
4.python調用,代碼如下:
from ctypes import cdlldll = cdll.LoadLibrary(‘G:\keyphrase extraction\Test\TestForPython.dll‘)print dll.sum(1,2)
輸出結果如下:
如果只有一個dll,如何判斷它是32位的還是64位的dll?
使用dumpbin工具,
在Visual Studio內建的dumpbin工具,然後輸入dumpbin /HEADERS TestForPython.dll
machine後位(x64),可以看到這個dll是64位的。如果machin後為(x86),則為32位的dll。
參考連結:
http://wolfprojects.altervista.org/dllforpyinc.php
http://stackoverflow.com/questions/10411709/windowserror-error-126-when-loading-a-dll-with-ctypes
http://stackoverflow.com/questions/15374710/windowserror-error-193-1-is-not-a-valid-win32-application-in-python#
http://blog.csdn.net/jamestaosh/article/details/4237756
python調取C/C++的dll產生方法