?? devicelist.h
字號:
// DeviceList.h - Interface to CDeviceList class
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#ifndef DEVICELIST_H
#define DEVICELIST_H
///////////////////////////////////////////////////////////////////////////////
class CDeviceListEntry
{ // class CDeviceListEntry
public:
CDeviceListEntry(LPCTSTR linkname, LPCTSTR friendlyname);
CDeviceListEntry(){}
CString m_linkname;
CString m_friendlyname;
}; // class CDeviceListEntry
///////////////////////////////////////////////////////////////////////////////
class CDeviceList
{ // class CDeviceList
public:
CDeviceList(const GUID& guid);
~CDeviceList();
GUID m_guid; // the interface GUID for this list
CArray<CDeviceListEntry, CDeviceListEntry&> m_list; // list of devices
int Initialize();
}; // class CDeviceList
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -