欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows下Python调用dll

程序员文章站 2022-06-25 19:21:16
...
一、使用VC++生成一个.dll文件
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)