| 16 | |
| 17 | |
| 18 | CServiceManage::CServiceManage(CWnd* pParent /*=NULL*/) |
| 19 | : CDialog(CServiceManage::IDD, pParent) |
| 20 | { |
| 21 | //{{AFX_DATA_INIT(CServiceManage) |
| 22 | m_Codepage = _T(""); |
| 23 | m_bExt3Writable = FALSE; |
| 24 | m_bReadonly = FALSE; |
| 25 | m_srvStatus = _T(""); |
| 26 | m_sPrefix = _T(""); |
| 27 | m_sSuffix = _T(""); |
| 28 | m_bAutoMount = FALSE; |
| 29 | //}}AFX_DATA_INIT |
| 30 | |
| 31 | m_nStartmode = 0; |
| 32 | |
| 33 | m_bStarted = Ext2IsServiceStarted(); |
| 34 | |
| 35 | if (m_bStarted) { |
| 36 | m_srvStatus = _T("Ext2Fsd is already started."); |
| 37 | } else { |
| 38 | m_srvStatus = _T("Ext2Fsd is NOT started."); |
| 39 | } |
| 40 | |
| 41 | m_bInited = TRUE; |
| 42 | } |
| 43 | |
| 44 | |
| 45 | void CServiceManage::DoDataExchange(CDataExchange* pDX) |
nothing calls this directly
no test coverage detected