mrDarker
6 天以前 829fe6c6bc33d53fda9c31fd45a37e1df87befff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
// McDemo.h : PROJECT_NAME Ó¦ÓóÌÐòµÄÖ÷Í·Îļþ
//
 
#pragma once
 
#ifndef __AFXWIN_H__
    #error "ÔÚ°üº¬´ËÎļþ֮ǰ°üº¬¡°stdafx.h¡±ÒÔÉú³É PCH Îļþ"
#endif
 
#include "resource.h"        // Ö÷·ûºÅ
#include "..\McLibrarySDK\include\McLib.h"
 
 
// CMcDemoApp: 
// ÓйشËÀàµÄʵÏÖ£¬Çë²ÎÔÄ McDemo.cpp
//
 
class CMcDemoApp : public CWinApp
{
public:
    CMcDemoApp();
 
// ÖØÐ´
public:
    virtual BOOL InitInstance();
 
// ÊµÏÖ
 
    DECLARE_MESSAGE_MAP()
    virtual int ExitInstance();
};
 
extern CMcDemoApp theApp;