1. 首页
  2. 数据库
  3. 其它
  4. c++生成dll使用python调用dll的方法

c++生成dll使用python调用dll的方法

上传者: 2020-12-30 05:14:11上传 PDF文件 21.89KB 热度 22次
第一步,建立一个CPP的DLL工程,然后写如下代码,生成DLL 复制代码 代码如下:#include #define DLLEXPORT extern “C” __declspec(dllexport) DLLEXPORT int __stdcall hello() { printf(“Hello world!\n”); return 0; } 第二步,编写一个 python 文件:复制代码 代码如下:# coding: utf-8 import os import ctypes CU
用户评论