资源简介
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个文件信息
- 上一篇:C++ 垃圾文件清理
- 下一篇:C++ 替换应用程序中对话框资源
相关资源
- C++实战源码-小蛇长得快
- C++实战源码-文字水平滚动
- C++实战源码-替换指定的字符串
- C++实战源码-小球称重
- C++实战源码-新同学的年龄
- C++实战源码-向数组中赋值
- C++实战源码-用#打印三角形
- C++实战源码-统计学生成绩分布
- C++实战源码-向数组中插入元素
- C++实战源码-用指向函数的指针比较大
- C++实战源码-用宏定义实现值互换
- C++实战源码-CD抓取
- C++实战源码-指定符号分割字符串
- C++实战源码-抓不住的兔子
- C++实战源码-用new动态创建结构体
- C++实战源码-将AVI动画分解成BMP位图
- C++实战源码-修改可执行文件中的资源
- C++实战源码-指向结构体变量的指针
- C++实战源码-将二维数组行列对换
- C++实战源码-应用random_shuffle算法将元
- C++实战源码-应用adjacent_find算法搜索相
- C++实战源码-数组中整数的判断
- C++实战源码-获取数组中元素的个数
- C++实战源码-将二维数组转换为一维数
- C++实战源码-迭代器的用法
- C++实战源码-二维数组行最大值中的最
- C++实战源码-输出数组元素
- C++实战源码-使用指针变量遍历二维数
- C++实战源码-数组中连续相等数的计数
- C++实战源码-计算字符串中有多少个单
评论
共有 条评论