Pyhton 调用 C++函数

// dllmain.cpp : 定义 DLL 应用程序的入口点。
#include "pch.h"

#define DLLEXPORT extern "C" __declspec(dllexport) //放在 #include "stdafx.h" 之后
//两数相加
DLLEXPORT int sum(int a, int b) {
    return a + b;
}
from ctypes import *

#----------以下四种加载DLL方式皆可—————————
# pDLL = WinDLL("./myTest.dll")
# pDll = windll.LoadLibrary("./myTest.dll")
# pDll = cdll.LoadLibrary("./myTest.dll")
pDll = CDLL("./sum.dll")

#调用动态链接库函数
res = pDll.sum(c_int(25),c_int(35))
#打印返回结果
print(res)