摘要: 既然写了静态链接库,就顺带把动态链接库也学习下。创建一个动态链接库工程,名称为ConvertDynamicLib在cpp文件中写入下面的代码 1 #include "stdafx.h" 2 #include <stdlib.h> 3 #include <windows.h> 4 #include <stdio.h> 5 6 BOOL APIENTRY DllMain( HANDLE hModule, 7 DWORD ul_reason_for_call, 8 LPVOID lpReserved ... 阅读全文
posted @ 2012-07-01 00:17 r3call 阅读(273) 评论(0) 推荐(0) 编辑