MFC-Simulator/TestSimulator/TestSimulator.h
2023-02-03 10:07:52 +08:00

32 lines
448 B
C++

// TestSimulator.h : PROJECT_NAME 應用程式的主要標頭檔
//
#pragma once
#ifndef __AFXWIN_H__
#error "對 PCH 包含此檔案前先包含 'stdafx.h'"
#endif
#include "resource.h" // 主要符號
// CTestSimulatorApp:
// 請參閱實作此類別的 TestSimulator.cpp
//
class CTestSimulatorApp : public CWinApp
{
public:
CTestSimulatorApp();
// 覆寫
public:
virtual BOOL InitInstance();
// 程式碼實作
DECLARE_MESSAGE_MAP()
};
extern CTestSimulatorApp theApp;