DragonNest/Client/NetTest/NetTest.h
2024-12-20 16:56:44 +08:00

32 lines
No EOL
1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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;