⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 buttonbar.cpp

📁 将exe等可执行文件转化成c程序的反编译程序,先到汇编再到c
💻 CPP
字号:
// ButtonBar.cpp : implementation file
//

#include "stdafx.h"
#include "exe2c_gui.h"
#include "ButtonBar.h"

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

/////////////////////////////////////////////////////////////////////////////
// CButtonBar dialog


CButtonBar::CButtonBar()
{
	//{{AFX_DATA_INIT(CButtonBar)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CButtonBar::DoDataExchange(CDataExchange* pDX)
{
	CDialogBar::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CButtonBar)
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CButtonBar, CDialogBar)
	//{{AFX_MSG_MAP(CButtonBar)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CButtonBar message handlers
LONG  CButtonBar::OnInitDialog  (UINT  wParam,  LONG  lParam)
 {
	 if  ( !HandleInitDialog(wParam,  lParam)  ||  !UpdateData(FALSE))
		{
			TRACE0("Warning:  UpdateData  failed  during  dialog  init.\n");
			return  FALSE;
		}


	
	return TRUE;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -