| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /************************************************************************/
- /* Copyright (C), 2016-2020, [Jeff], 保留所有权利;
- /* 模 块 名:;
- /* 描 述:;
- /*
- /* 版 本:[V];
- /* 作 者:[Jeff];
- /* 日 期:[3/20/2018];
- /*
- /*
- /* 注 意:;
- /*
- /* 修改记录:[Jeff];
- /* 修改日期:;
- /* 修改版本:;
- /* 修改内容:;
- /************************************************************************/
- #ifndef __DISC_MASTER__
- #define __DISC_MASTER__
- #pragma once
- class CDiscMaster
- {
- IDiscMaster2 *m_pDiscMaster;
- HRESULT m_hResult;
- CString m_strErrorMsg;
- public:
- CDiscMaster(void);
- ~CDiscMaster(void);
- inline HRESULT GetHResult() {return m_hResult;}
- inline CString GetErrorMsg() {return m_strErrorMsg;}
- bool Initialize();
- long GetTotalDevices();
- CString GetDeviceUniqueID(long nIndex);
- };
- #endif
|