windows下Python调用dll
程序员文章站
2022-06-25 19:21:16
...
一、使用VC++生成一个.dll文件
1、打开VC++新建一个“Win32 Dynamic_Link Library”空工程
2、编写头文件Lib.h
3、编写主文件util.cpp
4、将util.cpp“组建”pdll.dll文件
二、在Python中使用
test.py
1、打开VC++新建一个“Win32 Dynamic_Link Library”空工程
2、编写头文件Lib.h
#ifndef LIB_H
#define LIB_H
extern "C" int __declspec(dllexport)add(int x, int y);
#endif
3、编写主文件util.cpp
#include "Lib.h"
int add(int x, int y)
{
return x + y;
}
4、将util.cpp“组建”pdll.dll文件
二、在Python中使用
test.py
# -*- coding:UTF-8 -*-
from ctypes import *
import os
#加载刚才生成的.dll文件
cUtil = cdll.LoadLibrary(r'E:\work\pstudy\src\pythonC\pdll.dll')
print cUtil.add(1,2)
上一篇: MFC中DLL的创建