资源简介
MFC base64编码/解码工具 工程文件 VC6.0调试正常
代码片段和文件信息
// base_64.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “base_64.h“
#include “base_64Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Cbase_64App
BEGIN_MESSAGE_MAP(Cbase_64App CWinApp)
//{{AFX_MSG_MAP(Cbase_64App)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Cbase_64App construction
Cbase_64App::Cbase_64App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only Cbase_64App object
Cbase_64App theApp;
/////////////////////////////////////////////////////////////////////////////
// Cbase_64App initialization
BOOL Cbase_64App::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
Cbase_64Dlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 23868 2012-11-12 20:45 ba
文件 1249 2012-11-12 20:46 ba
文件 2077 2012-11-11 16:10 ba
文件 4177 2012-11-11 16:10 ba
文件 520 2012-11-11 16:10 ba
文件 1335 2012-11-11 16:10 ba
文件 82944 2012-11-12 20:46 ba
文件 48640 2012-11-12 20:46 ba
文件 1696 2012-11-12 20:46 ba
文件 7296 2012-11-12 20:21 ba
文件 10734 2012-11-12 19:36 ba
文件 1424 2012-11-11 17:24 ba
文件 3597 2012-11-11 16:10 ba
文件 3262 2012-11-12 20:11 ba
文件 399 2012-11-11 16:10 ba
文件 823 2012-11-12 20:15 ba
文件 209 2012-11-11 16:10 ba
文件 1054 2012-11-11 16:10 ba
目录 0 2012-11-12 20:46 ba
目录 0 2012-11-12 20:12 ba
目录 0 2012-11-12 20:46 ba
----------- --------- ---------- ----- ----
195304 21
- 上一篇:空间平面的最小二乘拟合
- 下一篇:RSA数字签名系统c源码
评论
共有 条评论