C,Python调用DLL
摘要:DLL的创建 要用__declspec(dllexport)声明导出函数 1 #include <stdio.h> 2 __declspec(dllexport) int sum(int a,int b) 3 { 4 printf("Welcome to use DLL !\n"); 5 print
阅读全文
posted @ 2021-07-26 15:22
posted @ 2021-07-26 15:22