[問題] 請問有關dll問題(VC++6) (已解決,感謝S大)

看板C_and_CPP作者 (我也不願意)時間7年前 (2016/10/20 00:35), 7年前編輯推噓1(102)
留言3則, 2人參與, 最新討論串1/1
開發平台(Platform): (Ex: Win10, Linux, ...) Windows xp 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) visual studio c++ 6 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) export dll/import dll 問題(Question): 因為某種特殊硬體原因, 必須使用VC+6開發 我在使用Dev C+製做dll檔後, 使用VC+6 Import dll, 可以正常呼叫dll中的API 但在使用VC++6製作DLL檔後, VC++6 載入卻失敗, 表示位置措誤, 而使用dependency Walker Win32去檢視該VC++做出的dll檔, 則出現亂碼: https://mega.nz/#!xwQwnAgT!A8IEmGm81tbui3xEEsC3wUeDPzerlcBfdPnsF1N7PDQ 載入及載出的專案: https://mega.nz/#!khpGHAKK!ZR1-wIQ3qgnJy4lFfKUys7xo54SNPzYhqtWhUfsVOY8 請教各位前輩, VC++6製出DLL 有什麼SOP嗎? 個人別無所求, 只要能向Dev C++一樣製出 可以被LoadLibrary就好 餵入的資料(Input): 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): 程式碼(Code):(請善用置底文網頁, 記得排版) 補充說明(Supplement): //-------- Make DLL -------- // TestDLL.cpp : Defines the entry point for the DLL application. // #include "stdafx.h" #include "TestDLL.h" #include <windows.h> #include <stdio.h> #include <string.h> #include <stdlib.h> BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { printf("CALL DLL\r\n"); switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } // This is an example of an exported variable TESTDLL_API int nTestDLL=0; // This is an example of an exported function. TESTDLL_API int fnTestDLL(void) { return 42; } // This is the constructor of a class that has been exported. // see TestDLL.h for the class definition CTestDLL::CTestDLL() { return; } //-------- Call Dll -------- // CallDLL.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" #include "stdio.h" #include "stdlib.h" //#include "string.h #define DLLOMPORT __declspec(dllexport) //Import HMODULE pdll = LoadLibrary( "TestDLL.dll" ); //Definition #define CallDLL(hLinHandle, \ FUN_Type, \ DLL_FUN_Name, \ FUN_Define, \ pFUNCallBack, \ FUN_Intent) \ typedef FUN_Type (*FUN_Define) FUN_Intent; \ FUN_Define pFUNCallBack = \ (FUN_Define) GetProcAddress ( hLinHandle, DLL_FUN_Name ); //Marco, Call example CallDLL( pdll, BOOL, "DllMain", dm_DllMain, pm_DllMain, (HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) ); int main(int argc, char* argv[]) { int ij = GetLastError(); BOOL kk = pm_DllMain(0,0,0); printf("ij=%d\r\n", ij); if(ij) { printf("YYYY\r\n"); } else { printf("NNNN\r\n"); } printf("Hello World!\n"); char line[80]; gets(line); return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.25.12.192 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1476894900.A.213.html ※ 編輯: jiannan1828 (114.25.12.192), 10/20/2016 00:35:59

10/20 06:52, , 1F
因為C++支援多載含數,匯出的含數要包extern "C"什麼的
10/20 06:52, 1F

10/20 06:52, , 2F
小弟也不是很懂,胡亂猜的
10/20 06:52, 2F
再次感謝S大神 我在function define前, 包一個extern c 在denpendency就能看到了 感謝 ※ 編輯: jiannan1828 (220.128.199.139), 10/20/2016 09:29:35

10/20 09:49, , 3F
C++ name mangling
10/20 09:49, 3F
文章代碼(AID): #1O1w2q8J (C_and_CPP)