python調取C/C++的dll產生方法

來源:互聯網
上載者:User

標籤:

本文針對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產生方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.