资源简介
UG 二次开发 MFC 外部模式 开发实例 包含完整源代码 很好的一个例子 学习的好例子
代码片段和文件信息
// MFC in UG.cpp : Defines the initialization routines for the DLL.
//
#include “stdafx.h“
#include “MFC in UG.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
// 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.
//
// Please see MFC Technical Notes 33 and 58 for additional
// details.
//
/////////////////////////////////////////////////////////////////////////////
// CMFCinUGApp
BEGIN_MESSAGE_MAP(CMFCinUGApp CWinApp)
//{{AFX_MSG_MAP(CMFCinUGApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMFCinUGApp construction
CMFCinUGApp::CMFCinUGApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMFCinUGApp object
CMFCinUGApp theApp;
#include
#include
#include
#include
#include yler.h>
#include
extern “C“ DllExport void ufusr( char *param int *returnCode int rlen )//UG/Open函数入口
{
int errorCode = UF_initialize();
if ( 0 == errorCode )
{
//实现所需功能的函数调用,如:
AfxMessageBox(“I have realized how to call MFC in UG development!“);
errorCode = UF_terminate();
}
}
extern “C“ int ufusr_ask_unload( void )
{
return( UF_UNLOAD_UG_TERMINATE );
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 18816 2008-11-17 09:35 MFC in UG\MFC in UG.aps
文件 334 2007-05-27 01:02 MFC in UG\MFC in UG.clw
文件 2307 2008-11-17 09:50 MFC in UG\MFC in UG.cpp
文件 193 2007-05-27 01:02 MFC in UG\MFC in UG.def
文件 4319 2007-11-01 19:57 MFC in UG\MFC in UG.dsp
文件 543 2007-05-29 23:48 MFC in UG\MFC in UG.dsw
文件 1270 2007-05-27 01:02 MFC in UG\MFC in UG.h
文件 11045888 2008-11-17 10:41 MFC in UG\MFC in UG.ncb
文件 78848 2007-11-01 19:57 MFC in UG\MFC in UG.opt
文件 822 2007-11-01 19:57 MFC in UG\MFC in UG.plg
文件 3083 2007-05-27 01:02 MFC in UG\MFC in UG.rc
文件 882 2008-11-17 10:41 MFC in UG\MFC in UG.sln
..A..H. 10752 2008-11-17 10:41 MFC in UG\MFC in UG.suo
文件 7145 2008-11-17 10:41 MFC in UG\MFC in UG.vcproj
文件 1401 2008-11-17 10:41 MFC in UG\MFC in UG.vcproj.DD677F0119E74F1.Administrator.user
文件 2599 2007-05-27 01:02 MFC in UG\ReadMe.txt
文件 401 2007-05-27 01:02 MFC in UG\res\MFC in UG.rc2
文件 381 2007-05-27 01:02 MFC in UG\Resource.h
文件 211 2007-05-27 01:02 MFC in UG\StdAfx.cpp
文件 1447 2007-05-27 01:02 MFC in UG\StdAfx.h
目录 0 2008-11-17 09:35 MFC in UG\Debug
目录 0 2008-11-16 09:12 MFC in UG\Release
目录 0 2008-11-16 09:12 MFC in UG\res
目录 0 2008-11-17 10:41 MFC in UG
----------- --------- ---------- ----- ----
11181860 25
相关资源
- MFC实现的仿QQ的抽屉效果
- MFC中改变list control满足条件的某一行
- MFC的CStatic子类化,解决背景透明,文
- mschart vs2010 mfc源码
- MFC做的仓库管理系统
- 用vc++6.0mfc对话框做的钟表
- MFC读取文本文件方法
- 基于对话框的多线程进度条更新
- 五子棋MFC 五子棋MFC 五子棋MFC
- Visual Studio 2012制作MFC计算器-TC王者
- MFC电梯模拟系统
- MFC实现10进制、2进制、16 进制和ASCI
- VC++使用教程烟台南山学院
- 汉王电子签批屏ESP1020A二次开发包sd
- MFC写的复数计算器
- 约瑟夫算法——MFC
- MFC课程设计图书管理系统实验报告内
- C++程序坦克大战MFC
- VS MFC C++ 万年历
- VC++开发的软件动态链接库mfc42d.dll m
- 汉字点阵字库建立与提取
- MFC界面 约瑟夫环
- 利用MFC编写一个简单的带界面的数据
- MFC编写的DES加解密程序
- 操作系统课程设计 哲学家进餐问题完
- 360杀毒软件界面源码—Visual C++6.0开发
- opengl MFC时钟动画
- 用MFC开发的UDP接收和发送软件
- 用MFC实现的职工管理系统
- mfc按CEdit编辑框弹出自定义键盘
评论
共有 条评论