iMONDisplayApiSample/DisplayTest/DisplayTest.h
author StephaneLenclud
Sun, 14 Apr 2013 22:53:58 +0200
changeset 10 dfb9169831dc
permissions -rw-r--r--
Removing SUOs.
StephaneLenclud@8
     1
// DisplayTest.h : main header file for the PROJECT_NAME application
StephaneLenclud@8
     2
//
StephaneLenclud@8
     3
StephaneLenclud@8
     4
#pragma once
StephaneLenclud@8
     5
StephaneLenclud@8
     6
#ifndef __AFXWIN_H__
StephaneLenclud@8
     7
	#error "include 'stdafx.h' before including this file for PCH"
StephaneLenclud@8
     8
#endif
StephaneLenclud@8
     9
StephaneLenclud@8
    10
#include "resource.h"		// main symbols
StephaneLenclud@8
    11
StephaneLenclud@8
    12
StephaneLenclud@8
    13
// CDisplayTestApp:
StephaneLenclud@8
    14
// See DisplayTest.cpp for the implementation of this class
StephaneLenclud@8
    15
//
StephaneLenclud@8
    16
StephaneLenclud@8
    17
class CDisplayTestApp : public CWinApp
StephaneLenclud@8
    18
{
StephaneLenclud@8
    19
public:
StephaneLenclud@8
    20
	CDisplayTestApp();
StephaneLenclud@8
    21
StephaneLenclud@8
    22
// Overrides
StephaneLenclud@8
    23
	public:
StephaneLenclud@8
    24
	virtual BOOL InitInstance();
StephaneLenclud@8
    25
StephaneLenclud@8
    26
// Implementation
StephaneLenclud@8
    27
StephaneLenclud@8
    28
	DECLARE_MESSAGE_MAP()
StephaneLenclud@8
    29
};
StephaneLenclud@8
    30
StephaneLenclud@8
    31
extern CDisplayTestApp theApp;