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