2023-10-20 06:40:57 +08:00
|
|
|
// launch3.h : main header file for the LAUNCH3 application
|
|
|
|
//
|
|
|
|
|
2025-06-28 13:59:28 -07:00
|
|
|
#if !defined(AFX_LAUNCH3_H__E487BB2C_CCC3_4F9C_BE82_80956F3F1580__INCLUDED_)
|
|
|
|
#define AFX_LAUNCH3_H__E487BB2C_CCC3_4F9C_BE82_80956F3F1580__INCLUDED_
|
2023-10-20 06:40:57 +08:00
|
|
|
|
|
|
|
#if _MSC_VER > 1000
|
|
|
|
#pragma once
|
|
|
|
#endif // _MSC_VER > 1000
|
|
|
|
|
|
|
|
#ifndef __AFXWIN_H__
|
|
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CLaunch3App:
|
|
|
|
// See launch3.cpp for the implementation of this class
|
|
|
|
//
|
|
|
|
|
|
|
|
class CLaunch3App : public CWinApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CLaunch3App();
|
|
|
|
|
|
|
|
// Overrides
|
|
|
|
// ClassWizard generated virtual function overrides
|
|
|
|
//{{AFX_VIRTUAL(CLaunch3App)
|
|
|
|
public:
|
|
|
|
virtual BOOL InitInstance();
|
|
|
|
//}}AFX_VIRTUAL
|
|
|
|
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
//{{AFX_MSG(CLaunch3App)
|
|
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
|
|
// DO NOT EDIT what you see in these blocks of generated code !
|
|
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
|
2025-06-28 13:59:28 -07:00
|
|
|
#endif // !defined(AFX_LAUNCH3_H__E487BB2C_CCC3_4F9C_BE82_80956F3F1580__INCLUDED_)
|