http://blog.csdn.net/testcs_dn/article/details/27237509 -dll文件製做函數
http://blog.csdn.net/very_2/article/details/6534915 -dll文件調用.net
// SimpleDLLTest.cpp : 定義控制檯應用程序的入口點。 #include "stdafx.h" #include <stdio.h> #include <Windows.h> #include <tchar.h> int _tmain(int argc, _TCHAR* argv[]) { HMODULE hModule = NULL; typedef int (*Func)(int a, int b); // 動態加載 DLL 文件 hModule = LoadLibrary(_TEXT("e:/SimpleDLL.dll" )); dll文件存放的路徑 // 獲取 add 函數地址 Func fAdd = (Func)GetProcAddress(hModule, "add" ); // 使用函數指針 printf("%d\n" , fAdd(8, 20)); // 最後記得要釋放指針 FreeLibrary(hModule); system("pause"); return 0; }