// MyAppp.h : fichier d'en-tête principal pour l'application MyAppp // #pragma once #ifndef __AFXWIN_H__ #error "incluez 'stdafx.h' avant d'inclure ce fichier pour PCH" #endif #include "resource.h" // symboles principaux // CMyApppApp: // Consultez MyAppp.cpp pour l'implémentation de cette classe // class CMyApppApp : public CWinAppEx { public: CMyApppApp(); // Substitutions public: virtual BOOL InitInstance(); virtual int ExitInstance(); // Implémentation UINT m_nAppLook; BOOL m_bHiColorIcons; int return_code; virtual void PreLoadState(); virtual void LoadCustomState(); virtual void SaveCustomState(); afx_msg void OnAppAbout(); DECLARE_MESSAGE_MAP() }; extern CMyApppApp theApp;