• 大小: 0.04M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++ 可导出的动态链接库函数(提高篇-实例185).zip

资源截图

代码片段和文件信息

// Dll.cpp : Defines the initialization routines for the DLL.
//

#include “stdafx.h“
#include “Dll.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

extern “C“ {__declspec(dllexport) void DllDialog();}

//
// Note!
//
// If this DLL is dynamically linked against the MFC
// DLLs any functions exported from this DLL which
// call into MFC must have the AFX_MANAGE_STATE macro
// added at the very beginning of the function.
//
// For example:
//
// extern “C“ BOOL PASCAL EXPORT ExportedFunction()
// {
// AFX_MANAGE_STATE(AfxGetStaticModuleState());
// // normal function body here
// }
//
// It is very important that this macro appear in each
// function prior to any calls into MFC.  This means that
// it must appear as the first statement within the 
// function even before any object variable declarations
// as their constructors may generate calls into the MFC
// DLL.
//
// Plea

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       32784  2013-11-06 10:00  Dll\Dll.aps
     文件         383  2013-11-06 11:52  Dll\Dll.clw
     文件        1906  2013-11-06 11:24  Dll\Dll.cpp
     文件         187  2013-11-06 11:52  Dll\Dll.def
     文件        4103  2013-11-06 09:44  Dll\Dll.dsp
     文件         529  2013-11-06 09:53  Dll\Dll.dsw
     文件        1220  2013-11-06 09:44  Dll\Dll.h
     文件       48640  2013-11-06 11:52  Dll\Dll.opt
     文件        4009  2013-11-06 10:00  Dll\Dll.rc
     文件        2525  2013-11-06 09:44  Dll\ReadMe.txt
     文件         455  2013-11-06 09:48  Dll\Resource.h
     文件         205  2013-11-06 09:44  Dll\StdAfx.cpp
     文件        1447  2013-11-06 09:44  Dll\StdAfx.h
     文件         395  2013-11-06 09:44  Dll\res\Dll.rc2
     文件      102456  2013-11-06 11:20  TestDll\Dll.dll
     文件        1884  2013-11-06 11:19  TestDll\Dll.lib
     文件        3597  2013-11-06 09:53  TestDll\ReadMe.txt
     文件         685  2013-11-06 09:54  TestDll\Resource.h
     文件         209  2013-11-06 09:53  TestDll\StdAfx.cpp
     文件        1054  2013-11-06 09:53  TestDll\StdAfx.h
     文件       35420  2013-11-06 09:54  TestDll\TestDll.aps
     文件        1032  2013-11-06 11:43  TestDll\TestDll.clw
     文件        2077  2013-11-06 09:53  TestDll\TestDll.cpp
     文件        4177  2013-11-06 09:53  TestDll\TestDll.dsp
     文件         537  2013-11-06 11:24  TestDll\TestDll.dsw
     文件        1335  2013-11-06 09:53  TestDll\TestDll.h
     文件       48640  2013-11-06 11:43  TestDll\TestDll.opt
     文件        5156  2013-11-06 09:54  TestDll\TestDll.rc
     文件        4369  2013-11-06 11:21  TestDll\TestDllDlg.cpp
     文件        1381  2013-11-06 09:54  TestDll\TestDllDlg.h
     文件        1078  2013-11-06 09:53  TestDll\res\TestDll.ico
............此处省略1个文件信息

评论

共有 条评论