文章目錄
- 1. 首先VC++的DLL的匯出函數定義成標準C的匯出函數:
- 2. Python中調用如下:
- 3. 輸出結果:
1. 首先VC++的DLL的匯出函數定義成標準C的匯出函數:
#ifdef LRDLLTEST_EXPORTS
#define LRDLLTEST_API __declspec(dllexport)
#else
#define LRDLLTEST_API __declspec(dllimport)
#endif
extern "C" LRDLLTEST_API int Sum(int a , int b);
extern "C" LRDLLTEST_API void GetString(char* pChar);
//a + b
LRDLLTEST_API int Sum(int a , int b)
{
return a + b;
}
//Get a string
LRDLLTEST_API void GetString(char* pChar)
{
strcpy(pChar, "Hello DLL");
}
2. Python中調用如下:
from ctypes import *
fileName="LRDllTest.dll"
func=cdll.LoadLibrary(fileName)
str = create_string_buffer(20)
n = func.Sum(2, 3)
func.GetString(str)
print n
print str.raw
關於C語言中的一些參數類型詳見:http://www.python.org/doc/2.5/lib/node454.html
3. 輸出結果:
5
Hello DLL
Python 天天美味系列(總)
Python 天天美味(27) - 網路編程起步(Socket發送訊息)
Python 天天美味(28) - urlopen
Python 天天美味(29) - 調用VC++的動態連結程式庫(DLL)
Python 天天美味(30) - python資料結構與演算法之快速排序
Python 天天美味(31) - python資料結構與演算法之插入排序
...