阅读:1807回复:2
急:关于ISA GUID?
小弟用DS弄了个ISA的驱动程序,其中自动生成的GUID如下:
{0x4ec507d3, 0xfbe2, 0x4c4d, { 0xa5, 0x50, 0xa4, 0xd1, 0x51, 0xac, 0x87, 0x2a } } 感觉很别扭,请问在INF中的GUID就设置成这样吗? ClassGUID={0x4ec507d3, 0xfbe2, 0x4c4d, { 0xa5, 0x50, 0xa4, 0xd1, 0x51, 0xac, 0x87, 0x2a } } 我在安装驱动的时候,系统说找不到硬件信息, 是不是与这个有关?? |
|
沙发#
发布于:2008-09-16 14:04
你看devguid.h头文件中是否有isa的guid,如果有,用它给定的,否则,可以自己订制一个。
|
|
板凳#
发布于:2008-09-16 16:08
// interface.h - device interface classes for ISA_CARD
// This GUID identifies the device interface class used by the ISA_CARDDevice device // TODO: If your driver supports a standard interface, use the GUID that identifies // the interface class, rather than using the one defined below #define ISA_CARDDevice_CLASS_GUID \ { 0x4ec507d3, 0xfbe2, 0x4c4d, { 0xa5, 0x50, 0xa4, 0xd1, 0x51, 0xac, 0x87, 0x2a } } 这是头文件里的定义,总觉得括号里还有一对括号有点别扭 |
|