»õ ÆÄÀÏ |
| | |
| | |  |
| | | // stdafx.h : ì주 ì¬ì©íì§ë§ ì주 ë³ê²½ëì§ë ìë |
| | | // íì¤ ìì¤í
í¬í¨ íì¼ ë° íë¡ì í¸ ê´ë ¨ í¬í¨ íì¼ì´ |
| | | // ë¤ì´ ìë í¬í¨ íì¼ì
ëë¤. |
| | | |
| | | #pragma once |
| | | |
| | | #ifndef VC_EXTRALEAN |
| | | #define VC_EXTRALEAN // ê±°ì ì¬ì©ëì§ ìë ë´ì©ì Windows í¤ëìì ì ì¸í©ëë¤. |
| | | #endif |
| | | |
| | | #include "targetver.h" |
| | | |
| | | #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // ì¼ë¶ CString ìì±ìë ëª
ìì ì¼ë¡ ì ì¸ë©ëë¤. |
| | | |
| | | // MFCì ê³µíµ ë¶ë¶ê³¼ 무ì ê°ë¥í ê²½ê³ ë©ìì§ì ëí ì¨ê¸°ê¸°ë¥¼ í´ì í©ëë¤. |
| | | #define _AFX_ALL_WARNINGS |
| | | |
| | | #include <afxwin.h> // MFC íµì¬ ë° íì¤ êµ¬ì± ììì
ëë¤. |
| | | #include <afxext.h> // MFC íì¥ì
ëë¤. |
| | | |
| | | |
| | | #include <afxdisp.h> // MFC ìëí í´ëì¤ì
ëë¤. |
| | | |
| | | |
| | | |
| | | #ifndef _AFX_NO_OLE_SUPPORT |
| | | #include <afxdtctl.h> // Internet Explorer 4 ê³µì© ì»¨í¸ë¡¤ì ëí MFC ì§ìì
ëë¤. |
| | | #endif |
| | | #ifndef _AFX_NO_AFXCMN_SUPPORT |
| | | #include <afxcmn.h> // Windows ê³µì© ì»¨í¸ë¡¤ì ëí MFC ì§ìì
ëë¤. |
| | | #endif // _AFX_NO_AFXCMN_SUPPORT |
| | | |
| | | #include <afxcontrolbars.h> // MFCì 리본 ë° ì»¨í¸ë¡¤ ë§ë ì§ì |
| | | #include <afxwin.h> |
| | | #include <afxcontrolbars.h> |
| | | #include <afxcontrolbars.h> |
| | | #include <afxcontrolbars.h> |
| | | #include <afxcontrolbars.h> |
| | | #include <afxcontrolbars.h> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | #ifdef _UNICODE |
| | | #if defined _M_IX86 |
| | | #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") |
| | | #elif defined _M_X64 |
| | | #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"") |
| | | #else |
| | | #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") |
| | | #endif |
| | | #endif |
| | | |
| | | enum LogType |
| | | { |
| | | Normal = 0, |
| | | Dbg, |
| | | Operation, |
| | | Err |
| | | }; |
| | | |
| | | #define GRID_FIX_COLOR RGB(0,128,255) |
| | | #define GRID_COLOR RGB(242,242,242) |
| | | #define GRID_TEXT_COLOR RGB(255,255,255) |
| | | #define GRID_ALARM_TEXT_COLOR RGB(255,0,0) |
| | | #define GRID_LINE_COLOR GRID_FIX_COLOR |
| | | |
| | | extern CCriticalSection g_criticalExe; |
| | | extern CCriticalSection g_criticalLog; |
| | | |
| | | CString GetExePath(); |
| | | |
| | | void LOG(int nType, const char* fmt, ...); |
| | | |
| | | CString INIReadStr(CString strAppName, CString strKeyName, CString strFilePath); |
| | | void INIWriteStr(CString strAppName, CString strKeyName, CString strValue, CString strFilePath); |
| | | |
| | | int INIReadInt(CString strAppName, CString strKeyName, CString strFilePath); |
| | | void INIWriteInt(CString strAppName, CString strKeyName, int nValue, CString strFilePath); |