Update private master program code
This commit is contained in:
40
server/2015Remote/sys/ServiceInfoDlg.h
Normal file
40
server/2015Remote/sys/ServiceInfoDlg.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#pragma once
|
||||
#include "MachineDlg.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CServiceInfoDlg dialog
|
||||
|
||||
typedef struct {
|
||||
CString strSerName;
|
||||
CString strSerDisPlayname;
|
||||
CString strSerDescription;
|
||||
CString strFilePath;
|
||||
CString strSerRunway;
|
||||
CString strSerState;
|
||||
} SERVICEINFO;
|
||||
|
||||
class CServiceInfoDlg : public CDialog
|
||||
{
|
||||
public:
|
||||
CServiceInfoDlg(CWnd* pParent = NULL);
|
||||
|
||||
ClientContext* m_pContext;
|
||||
ISocketBase* m_iocpServer;
|
||||
|
||||
enum { IDD = IDD_SERVICE_INFO };
|
||||
CComboBox m_combox_runway;
|
||||
|
||||
SERVICEINFO m_ServiceInfo;
|
||||
CMachineDlg* m_MachineDlg;
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX);
|
||||
HICON m_hIcon;
|
||||
void SendToken(BYTE bToken);
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnSelchangeComboRunway();
|
||||
afx_msg void OnButtonStart();
|
||||
afx_msg void OnButtonStop();
|
||||
afx_msg void OnButtonPause();
|
||||
afx_msg void OnButtonContinue();
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
Reference in New Issue
Block a user