// LogView.h : LogView ÀÀ¿ë ÇÁ·Î±×·¥¿¡ ´ëÇÑ ÁÖ Çì´õ ÆÄÀÏ
|
//
|
#pragma once
|
|
#ifndef __AFXWIN_H__
|
#error "PCH¿¡ ´ëÇØ ÀÌ ÆÄÀÏÀ» Æ÷ÇÔÇϱâ Àü¿¡ 'stdafx.h'¸¦ Æ÷ÇÔÇÕ´Ï´Ù."
|
#endif
|
|
#include "resource.h" // ÁÖ ±âÈ£ÀÔ´Ï´Ù.
|
|
|
// CLogViewApp:
|
// ÀÌ Å¬·¡½ºÀÇ ±¸Çö¿¡ ´ëÇØ¼´Â LogView.cppÀ» ÂüÁ¶ÇϽʽÿÀ.
|
//
|
|
class CLogViewApp : public CWinApp
|
{
|
public:
|
CLogViewApp();
|
|
|
// ÀçÁ¤ÀÇÀÔ´Ï´Ù.
|
public:
|
virtual BOOL InitInstance();
|
virtual int ExitInstance();
|
|
// ±¸ÇöÀÔ´Ï´Ù.
|
afx_msg void OnAppAbout();
|
DECLARE_MESSAGE_MAP()
|
|
HANDLE m_hMutex;
|
};
|
|
extern CLogViewApp theApp;
|