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

📄 hwimplicituse.h

📁 C++编程实践与技巧一书各章节的源码
💻 H
字号:
// HWImplicitUse.h : Defines the entry point for the application.
//
#ifndef _ATM_HW_IMPLICITUSE_H_
#define _ATM_HW_IMPLICITUSE_H_
#pragma once

#include "stdafx.h"
#include "wdlldemo.h"


//CMainApp Declarations
class CMainApp:public CWinApp
{
public:
	CMainApp();
	~CMainApp();
	virtual int Run( );
protected:
	BOOL InitInstance();
};

//CMainWnd Declarations
class CMainWnd:public CFrameWnd
{
public:
	CMainWnd();
	~CMainWnd();
};

#endif

⌨️ 快捷键说明

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