chenluhua1980
2026-01-06 4d9d8d22e3666076988c30afb4e7c6fe365c19aa
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;