随笔分类 -  Python

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 acd407 阅读(86) 评论(0) 推荐(0)

导航