• 大小: 31KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-25
  • 语言: C/C++
  • 标签: base64编码  

资源简介

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  base_64\base_64.aps

     文件       1249  2012-11-12 20:46  base_64\base_64.clw

     文件       2077  2012-11-11 16:10  base_64\base_64.cpp

     文件       4177  2012-11-11 16:10  base_64\base_64.dsp

     文件        520  2012-11-11 16:10  base_64\base_64.dsw

     文件       1335  2012-11-11 16:10  base_64\base_64.h

     文件      82944  2012-11-12 20:46  base_64\base_64.ncb

     文件      48640  2012-11-12 20:46  base_64\base_64.opt

     文件       1696  2012-11-12 20:46  base_64\base_64.plg

     文件       7296  2012-11-12 20:21  base_64\base_64.rc

     文件      10734  2012-11-12 19:36  base_64\base_64Dlg.cpp

     文件       1424  2012-11-11 17:24  base_64\base_64Dlg.h

     文件       3597  2012-11-11 16:10  base_64\ReadMe.txt

     文件       3262  2012-11-12 20:11  base_64\res\base_64.ico

     文件        399  2012-11-11 16:10  base_64\res\base_64.rc2

     文件        823  2012-11-12 20:15  base_64\resource.h

     文件        209  2012-11-11 16:10  base_64\StdAfx.cpp

     文件       1054  2012-11-11 16:10  base_64\StdAfx.h

     目录          0  2012-11-12 20:46  base_64\Debug

     目录          0  2012-11-12 20:12  base_64\res

     目录          0  2012-11-12 20:46  base_64

----------- ---------  ---------- -----  ----

               195304                    21


评论

共有 条评论

相关资源