-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGPEngine.h
More file actions
38 lines (26 loc) · 745 Bytes
/
GPEngine.h
File metadata and controls
38 lines (26 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// GPEngine.h: archivo de encabezado principal para la aplicación GPEngine
//
#pragma once
#ifndef __AFXWIN_H__
#error "incluir 'stdafx.h' antes de incluir este archivo para PCH"
#endif
#include "resource.h" // Símbolos principales
// CGPEngineApp:
// Consulte la sección GPEngine.cpp para obtener información sobre la implementación de esta clase
//
class CGPEngineApp : public CWinAppEx
{
public:
CGPEngineApp();
// Reemplazos
public:
virtual BOOL InitInstance();
// Implementación
BOOL m_bHiColorIcons;
virtual void PreLoadState();
virtual void LoadCustomState();
virtual void SaveCustomState();
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CGPEngineApp theApp;