DragonNest/Client/EtViewer/EtViewer.h
2024-12-19 09:48:26 +08:00

39 lines
647 B
C++

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