VS2008 C++呼叫DLL 動態呼叫
阿新 • • 發佈:2019-01-25
為了共享程式碼,需要生成標準的dll,本文將介紹在vs2008 C++生成及呼叫dll。
一、生成DLL
生成一個名為FunDll的dll檔案,對外函式為addl。
step1:vs2008 環境下,檔案-->新建專案,選擇visual c++,在選擇 “Win32 專案”,鍵入專案名稱,如 FunDll。如圖:
點選下一步,勾選“DLL”和“匯出空符號”,單擊“完成”
step 2,編寫功能函式
執行完step1步驟後,在FunDll.h 和FunDll.cpp中會生成一些例項程式碼,先把這些註釋掉,同時修改FunDll.h中的預處理巨集定義為:
#ifdef FUNDLL_EXPORTS
#define FUNDLL_API extern "C" __declspec(dllexport)
#else
#define FUNDLL_API extern "C" __declspec(dllexport)
#endif
在FunDll.h中宣告add函式,在FunDll.cpp中實現該函式。修改完後代碼如下:
FunDll.h:
- // 下列 ifdef 塊是建立使從 DLL 匯出更簡單的
- // 巨集的標準方法。此 DLL 中的所有檔案都是用命令列上定義的 FUNDLL_EXPORTS
- // 符號編譯的。在使用此 DLL 的
-
// 任何其他專案上不應定義此符號。這樣,原始檔中包含此檔案的任何其他專案都會將
- // FUNDLL_API 函式視為是從 DLL 匯入的,而此 DLL 則將用此巨集定義的
- // 符號視為是被匯出的。
- #ifdef FUNDLL_EXPORTS
- #define FUNDLL_API extern "C" __declspec(dllexport)
- #else
- #define FUNDLL_API extern "C" __declspec(dllexport)
- #endif
- FUNDLL_API int _stdcall add(int plus1,int plus2);
FunDll.cpp
- #include "stdafx.h"
-
#include "FunDll.h"
- int _stdcall add(int plus1,int plus2)
- {
- int ret ;
- ret=plus1+plus2;
- return ret;
- }
step3:新增 FunDll.def,修改內容為
- LIBRARY "FunDll"
- EXPORTS
- add
step 4,釋出FunDll.dll檔案
二,呼叫FunDll.dll
step1,新建C++控制檯程式,專案名稱為TestDll。
修改TestDll.cpp的程式碼為:
- // TestDll.cpp : 定義控制檯應用程式的入口點。
- //
- #include "stdafx.h"
- #include <windows.h>
- #include <stdio.h>
- #include <iostream>
- //定義MYPROC為指向一個返回值為int型的函式的指標
- typedefint (__stdcall *MYPROC)(int a,int b);
- int _tmain(int argc, _TCHAR* argv[])
- {
- HINSTANCE hinstLib;
- MYPROC ProcAdd;
- int val1,val2,res;
- val1=4;
- val2=5;
- // Get a handle to the DLL module.
- hinstLib = LoadLibrary(L"FunDll.dll");
- // If the handle is valid, try to get the function address.
- if (hinstLib != NULL)
- {
- ProcAdd = (MYPROC) GetProcAddress(hinstLib, "add");
- res=(ProcAdd)(val1,val2);
- printf("%d\n",res);
- }
- return 0;
- }
step2,把FunDll拷貝至TestDll專案資料夾下。
step3,執行,測試通過。