資源簡介
[源碼]比較成熟dll導(dǎo)出類示例(包含win32和mfc兩種dll以及exe調(diào)用示例)
參考codeproject大神鏈接https://www.codeproject.com/Articles/28969/HowTo-Export-C-classes-from-a-DLL
參考codeproject大神鏈接https://www.codeproject.com/Articles/28969/HowTo-Export-C-classes-from-a-DLL
代碼片段和文件信息
//?DllExport.cpp?:?Defines?the?exported?functions?for?the?DLL?application.
//
#include?“stdafx.h“
#include?“DllExport.h“
void?ImDllExport::Hi()
{
OutputDebugStringW(L“\nhi!\n“);
cout<<“hi~“< }
void?ImDllExport::Test()
{
OutputDebugStringW(L“\ntest\n“);
cout<<“test~“<
}
void?ImDllExport::Release()
{
delete?this;
}
ImDllExport::~ImDllExport()
{
OutputDebugStringW(L“\nrelease?ok\n“);
cout<<“release?ok~“< }
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件??????39424??2018-03-20?14:52??Debug\DllExport.dll
?????文件????????994??2018-03-20?14:47??Debug\DllExport.exp
?????文件???????2028??2018-03-20?14:47??Debug\DllExport.lib
?????文件??????88064??2018-03-20?15:46??Debug\mfcDll.dll
?????文件????????962??2018-03-20?15:46??Debug\mfcDll.exp
?????文件???????1952??2018-03-20?15:46??Debug\mfcDll.lib
?????文件??????38400??2018-03-20?15:53??Debug\useDll.exe
?????文件???????7380??2018-03-20?14:52??DllExport\Debug\BuildLog.htm
?????文件????????469??2018-03-20?15:49??DllExport\DllExport.cpp
?????文件?????????71??2018-03-20?14:47??DllExport\DllExport.def
?????文件????????218??2018-03-20?15:07??DllExport\DllExport.h
?????文件???????5240??2018-03-20?14:50??DllExport\DllExport.vcproj
?????文件????????720??2018-03-20?14:47??DllExport\dllmain.cpp
?????文件???????1272??2018-03-20?14:50??DllExport\IDllExport.h
?????文件???????1767??2018-03-19?18:19??DllExport\ReadMe.txt
?????文件????????296??2018-03-19?18:19??DllExport\stdafx.cpp
?????文件????????464??2018-03-20?14:44??DllExport\stdafx.h
?????文件???????1428??2018-03-19?18:19??DllExport\targetver.h
?????文件???????7392??2018-03-20?15:46??mfcDll\Debug\BuildLog.htm
?????文件???????1280??2018-03-20?15:46??mfcDll\IMFCDLL.h
?????文件????????451??2018-03-20?15:46??mfcDll\ImMfcDll.cpp
?????文件????????199??2018-03-20?15:41??mfcDll\ImMfcDll.h
?????文件???????1638??2018-03-20?15:46??mfcDll\mfcDll.cpp
?????文件????????132??2018-03-20?14:53??mfcDll\mfcDll.def
?????文件????????483??2018-03-20?15:39??mfcDll\mfcDll.h
?????文件???????3134??2018-03-20?14:53??mfcDll\mfcDll.rc
?????文件???????5492??2018-03-20?15:28??mfcDll\mfcDll.vcproj
?????文件???????2381??2018-03-20?14:53??mfcDll\ReadMe.txt
?????文件????????397??2018-03-20?14:53??mfcDll\res\mfcDll.rc2
?????文件????????377??2018-03-20?14:53??mfcDll\Resource.h
............此處省略23個(gè)文件信息
評(píng)論
共有 條評(píng)論