StephaneLenclud@8: // DisplayTest.h : main header file for the PROJECT_NAME application StephaneLenclud@8: // StephaneLenclud@8: StephaneLenclud@8: #pragma once StephaneLenclud@8: StephaneLenclud@8: #ifndef __AFXWIN_H__ StephaneLenclud@8: #error "include 'stdafx.h' before including this file for PCH" StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #include "resource.h" // main symbols StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: // CDisplayTestApp: StephaneLenclud@8: // See DisplayTest.cpp for the implementation of this class StephaneLenclud@8: // StephaneLenclud@8: StephaneLenclud@8: class CDisplayTestApp : public CWinApp StephaneLenclud@8: { StephaneLenclud@8: public: StephaneLenclud@8: CDisplayTestApp(); StephaneLenclud@8: StephaneLenclud@8: // Overrides StephaneLenclud@8: public: StephaneLenclud@8: virtual BOOL InitInstance(); StephaneLenclud@8: StephaneLenclud@8: // Implementation StephaneLenclud@8: StephaneLenclud@8: DECLARE_MESSAGE_MAP() StephaneLenclud@8: }; StephaneLenclud@8: StephaneLenclud@8: extern CDisplayTestApp theApp;