This commit is contained in:
2013-07-04 09:36:04 +00:00
parent aa218e0bc3
commit 704e882d0d
14 changed files with 1119 additions and 0 deletions

35
CPRobotDlg.h Normal file
View File

@@ -0,0 +1,35 @@
// CPRobotDlg.h : 헤더 파일
//
#pragma once
// CCPRobotDlg 대화 상자
class CCPRobotDlg : public CDialog
{
// 생성입니다.
public:
CCPRobotDlg(CWnd* pParent = NULL); // 표준 생성자입니다.
// 대화 상자 데이터입니다.
enum { IDD = IDD_CPROBOT_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
virtual BOOL DestroyWindow();
// 구현입니다.
protected:
HICON m_hIcon;
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButtonRefreshBalance();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnDestroy();
};