mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
513 B
18 lines
513 B
#include "devinfo.h"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// CUnkTmpl Interface Map initialization code
|
|
// Begin ->
|
|
const INTFMAPENTRY hwdeviceIME[] =
|
|
{
|
|
_INTFMAPENTRY(CHWDevice, IHWDevice),
|
|
};
|
|
|
|
const INTFMAPENTRY* CHWDevice::_pintfmap = hwdeviceIME;
|
|
const DWORD CHWDevice::_cintfmap =
|
|
(sizeof(hwdeviceIME)/sizeof(hwdeviceIME[0]));
|
|
|
|
// -> End
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
COMFACTORYCB CHWDevice::_cfcb = NULL;
|