DragonNest/Client/NetTest/NetTest.h
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

32 lines
No EOL
550 B
C++

// NetTest.h : NetTest 응용 프로그램에 대한 주 헤더 파일
//
#pragma once
#ifndef __AFXWIN_H__
#error "PCH에 대해 이 파일을 포함하기 전에 'stdafx.h'를 포함합니다."
#endif
#include "resource.h" // 주 기호입니다.
// CNetTestApp:
// 이 클래스의 구현에 대해서는 NetTest.cpp을 참조하십시오.
//
class CNetTestApp : public CWinApp
{
public:
CNetTestApp();
// 재정의입니다.
public:
virtual BOOL InitInstance();
// 구현입니다.
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
virtual BOOL OnIdle(LONG lCount);
};
extern CNetTestApp theApp;