00001 // Dialog.h : main header file for the PROJECT_NAME application 00002 // 00003 00004 #pragma once 00005 00006 #include "stdafx.h" 00007 #include "resource.h" // main symbols 00008 00009 00010 // CDialogApp: 00011 // See Dialog.cpp for the implementation of this class 00012 // 00013 00014 class CDialogApp : public CWinApp 00015 { 00016 public: 00017 CDialogApp(); 00018 00019 // Overrides 00020 public: 00021 virtual BOOL InitInstance(); 00022 00023 // Implementation 00024 00025 DECLARE_MESSAGE_MAP() 00026 }; 00027 00028 extern CDialogApp theApp;