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