VS2017——C語言dll編譯並調用

1.生成dll 1.1文件——新建——項目,選擇以下圖測試 1.2新建頭文件test.h和源文件test.cdebug //test.h __declspec(dllexport) int sum(int a, int b); //test.c #include "test.h" #include <stdio.h> int sum(int a, int b) { return a + b;
相關文章
相關標籤/搜索