Rev | Line | |
---|
[32] | 1 | // TestProg.h : main header file for the TestProg application
|
---|
| 2 | //
|
---|
| 3 | #pragma once
|
---|
| 4 |
|
---|
| 5 | #ifndef __AFXWIN_H__
|
---|
| 6 | #error "include 'stdafx.h' before including this file for PCH"
|
---|
| 7 | #endif
|
---|
| 8 |
|
---|
| 9 | #include "resource.h" // main symbols
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | // CTestProgApp:
|
---|
| 13 | // See TestProg.cpp for the implementation of this class
|
---|
| 14 | //
|
---|
| 15 |
|
---|
| 16 | class CTestProgApp : public CWinApp
|
---|
| 17 | {
|
---|
| 18 | public:
|
---|
| 19 | CTestProgApp();
|
---|
| 20 | private:
|
---|
| 21 | HINSTANCE hinstDll;
|
---|
| 22 |
|
---|
| 23 | // Overrides
|
---|
| 24 | public:
|
---|
| 25 | virtual BOOL InitInstance();
|
---|
| 26 | virtual BOOL ExitInstance();
|
---|
| 27 |
|
---|
| 28 | // Implementation
|
---|
| 29 | COleTemplateServer m_server;
|
---|
| 30 | // Server object for document creation
|
---|
| 31 | afx_msg void OnAppAbout();
|
---|
| 32 | DECLARE_MESSAGE_MAP()
|
---|
| 33 | };
|
---|
| 34 |
|
---|
| 35 | extern CTestProgApp theApp; |
---|
Note: See
TracBrowser
for help on using the repository browser.