摘要:
既然写了静态链接库,就顺带把动态链接库也学习下。创建一个动态链接库工程,名称为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 ... 阅读全文