摘要: 一般的DLL导出类方法,一个简单的例子:dllExample.h: 1 #pragma once 2 3 #ifdef DLL_EXPORTS 4 #define DLL_API __declspec(dllexport) 5 #else 6 #define DLL_API __declspec(... 阅读全文
posted @ 2015-04-20 18:11 JinJ 阅读(14272) 评论(0) 推荐(3) 编辑