|
Revision 724, 0.6 kB
(checked in by Leo, 7 months ago)
|
|
Small cleanup.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #ifndef _LEOCAD_H_ |
|---|
| 2 | #define _LEOCAD_H_ |
|---|
| 3 | |
|---|
| 4 | #include "resource.h" // main symbols |
|---|
| 5 | |
|---|
| 6 | class CCADApp : public CWinApp |
|---|
| 7 | { |
|---|
| 8 | public: |
|---|
| 9 | CCADApp(); |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | public: |
|---|
| 15 | virtual BOOL InitInstance(); |
|---|
| 16 | virtual int ExitInstance(); |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | void OnUpdateRecentFileMenu(CCmdUI* ) {}; |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | afx_msg void OnHelpUpdates(); |
|---|
| 24 | afx_msg void OnHelpHomePage(); |
|---|
| 25 | afx_msg void OnHelpEmail(); |
|---|
| 26 | |
|---|
| 27 | DECLARE_MESSAGE_MAP() |
|---|
| 28 | }; |
|---|
| 29 | |
|---|
| 30 | extern CCADApp theApp; |
|---|
| 31 | |
|---|
| 32 | #ifdef _DEBUG |
|---|
| 33 | void wprintf(char *fmt, ...); |
|---|
| 34 | #endif |
|---|
| 35 | |
|---|
| 36 | #endif // _LEOCAD_H_ |
|---|