• 大小: 64KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-05
  • 语言: C/C++
  • 标签: dll  导出类  

资源简介

[源码]比较成熟dll导出类示例(包含win32和mfc两种dll以及exe调用示例)
参考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~“<}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      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个文件信息

评论

共有 条评论