在Windows 7下,函数SetupDiEnumDeviceInterfaces失败,并显示1008错误代码 [英] Function SetupDiEnumDeviceInterfaces fails with 1008 error code under Windows 7

查看:182
本文介绍了在Windows 7下,函数SetupDiEnumDeviceInterfaces失败,并显示1008错误代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我们正在将HID设备支持应用程序从Windows XP移植到Windows7.

问题是该应用程序在Windows 7下找不到该设备,尽管在Windows XP下可以正常运行.函数SetupDiEnumDeviceInterfaces失败,错误代码为1008(尝试引用不存在的令牌.").操作系统正确枚举了我们的设备,并且在应用程序外部(相对于操作系统)正常运行.只是我们的应用程序不能(在Win 7下)使用其接口之一(有3个)来设置通信.

任何建议将不胜感激.


这里代码是:

 

Hello,

We are porting our HID device support application from Windows XP to Windows 7.

The problem is that the application can not find the device under windows 7, though it worked OK under Windows XP. The function SetupDiEnumDeviceInterfaces fails and the error code is 1008 ("An attempt was made to reference a token that does not exist."). The OS correctly enumerates our device and it functions correctly outside our application (vs. OS). Just our application can not (under Win 7) setup communication with one of its interfaces (there are 3).

Any suggestion will be appreciated.


Here is the code:

 

 

//目的:使用SetupDi API函数检索

 

//:属于界面类.

 

//Accepts:myGuid-接口类GUID.

 

//:devicePathName-指向包含

 

//:附件的设备路径名设备.

 

//返回:如果至少有一个,则为true找到设备,否则为False.

 

 

//int DetailData;

 

布尔 DeviceFound = ;

 

bool DeviceFound = false;

 

IntPtr DeviceInfoSet;

 

IntPtr DeviceInfoSet;

 

布尔 LastDevice = ;

 

bool LastDevice = false;

 

int BufferSize = 0;

 

int BufferSize = 0;

 

int MemberIndex = 0;

 

int MemberIndex = 0;

 

//DeviceManagementApiDeclarations.SP_DEVINFO_DATA MyDeviceInfoData;

 

DeviceManagementApiDeclarations . MyDeviceInterfaceDetailData = DeviceManagementApiDeclarations . ();

 

DeviceManagementApiDeclarations.SP_DEVICE_INTERFACE_DETAIL_DATA MyDeviceInterfaceDetailData = new HID_Test_Application.DeviceManagementApiDeclarations.SP_DEVICE_INTERFACE_DETAIL_DATA();

 

DeviceManagementApiDeclarations . MyDeviceInterfaceData = DeviceManagementApiDeclarations . ();

 

DeviceManagementApiDeclarations.SP_DEVICE_INTERFACE_DATA MyDeviceInterfaceData = new HID_Test_Application.DeviceManagementApiDeclarations.SP_DEVICE_INTERFACE_DATA();

 

int 结果= 0;

 

int Result = 0;

 

字符串 SingledevicePathName;

 

string SingledevicePathName;

 

布尔 成功= ;

 

bool Success = false;

 

 

尝试

{

 

//***

 

//API函数:SetupDiGetClassDevs

 

//目的:

 

//检索设备的信息集指定的设备组.

 

//SetupDiEnumDeviceInterfaces使用设备信息集.

 

//接受:

 

//接口类GUID

 

//空可检索所有设备的信息实例

 

//可选的顶部句柄-级别窗口(此处未使用)

 

//用于将返回的信息限制为当前存在的设备

 

//以及在由GUID指定的类.

 

//返回:

 

//设备信息集的句柄用于设备.

 

//***

 

DeviceInfoSet =

DeviceInfoSet =

 

DeviceManagementApiDeclarations .SetupDiGetClassDevs(

 

DeviceManagementApiDeclarations.SetupDiGetClassDevs (

 

参考 myGuid,

 

ref myGuid,

 

0,

null,

0,

 

DeviceManagementApiDeclarations .DIGCF_PRESENT | DeviceManagementApiDeclarations .DIGCF_DEVICEINTERFACE);

 

DeviceManagementApiDeclarations.DIGCF_PRESENT | DeviceManagementApiDeclarations.DIGCF_DEVICEINTERFACE);

 

 

调试 .WriteLine(MyDebugging.ResultOfAPICall(

Debug.WriteLine(MyDebugging.ResultOfAPICall("SetupDiClassDevs"));

 

DeviceFound =

DeviceFound =

false ;

MemberIndex = 0;

false;

MemberIndex = 0;

 

 

要做 {

 

do {

 

 

//以0开头,并通过设备信息设置到

 

//没有更多可用的设备.

 

 

//MyDeviceInterfaceData结构的cbSize元素必须设置为

 

//结构的大小(以字节为单位).大小为28个字节.

MyDeviceInterfaceData.cbSize = 28;

MyDeviceInterfaceData.cbSize = 28;

 

//Marshal.SizeOf(MyDeviceInterfaceData);

 

 

//***

 

//API函数:

 

//SetupDiEnumDeviceInterfaces()

 

//目的:检索SP_DEVICE_INTERFACE_DATA

 

//设备的结构.

 

//返回时,MyDeviceInterfaceData包含该句柄到

 

//用于检测到的设备的SP_DEVICE_INTERFACE_DATA结构.

 

//接受:

 

//SetupDiGetClassDevs返回的DeviceInfoSet.

 

//接口类GUID.

 

//用于在其中指定设备的索引设备信息集.

 

//指向设备的SP_DEVICE_INTERFACE_DATA结构.

 

//返回:

 

//成功时非零,零在True上.

 

//***

 

结果=

 

DeviceManagementApiDeclarations .SetupDiEnumDeviceInterfaces(

DeviceInfoSet,

DeviceManagementApiDeclarations.SetupDiEnumDeviceInterfaces (

DeviceInfoSet,

0,

 

参考 myGuid,

会员索引

ref myGuid,

MemberIndex,

 

参考 MyDeviceInterfaceData);

 

ref MyDeviceInterfaceData);

 

 

调试 .WriteLine(MyDebugging.ResultOfAPICall(

Debug.WriteLine(MyDebugging.ResultOfAPICall("SetupDiEnumDeviceInterfaces"));

 

 

//了解是否设置了设备信息已被检索.

 

 

如果 (结果== 0){

LastDevice =

if (Result == 0) {

LastDevice =

;

}

true;

}

其他 {

 

else {

 

//存在设备.

 

调试 .WriteLine( ":" );

 

Debug.WriteLine(" DeviceInfoSet for device #" + MemberIndex.ToString() + ": ");

 

调试 .WriteLine( + MyDeviceInterfaceData.cbSize.ToString());

 

Debug.WriteLine(" cbSize = " + MyDeviceInterfaceData.cbSize.ToString());

 

调试 .WriteLine( + MyDeviceInterfaceData.InterfaceClassGuid.ToString());

 

Debug.WriteLine(" InterfaceclassGuid = " + MyDeviceInterfaceData.InterfaceClassGuid.ToString());

 

调试 .WriteLine( "x" ));

 

Debug.WriteLine(" Flags = " + MyDeviceInterfaceData.Flags.ToString("x"));

 

 

//***

 

//API函数:

 

//SetupDiGetDeviceInterfaceDetail()

 

//目的:

 

//检索SP_DEVICE_INTERFACE_DETAIL_DATA结构

 

//包含有关设备的信息.

 

//要检索信息,请调用此功能两次.

 

//首次返回结构.

 

//第二次返回指向数据.

 

//接受:

 

//SetupDiGetClassDevs返回的DeviceInfoSet

 

//SetupDiEnumDeviceInterfaces返回的SP_DEVICE_INTERFACE_DATA结构

 

//指向SP_DEVICE_INTERFACE_DETAIL_DATA结构的指针接收信息

 

//有关指定的界面.

 

//SP_DEVICE_INTERFACE_DETAIL_DATA结构的大小.

 

//指向变量的指针收到返回的所需大小的

 

//SP_DEVICE_INTERFACE_DETAIL_DATA结构.

 

//指向SP_DEVINFO_DATA结构的指针,该指针指向接收有关设备的信息.

 

//返回:

 

//成功时非零,零失败.

 

//***

 

成功=

 

DeviceManagementApiDeclarations .SetupDiGetDeviceInterfaceDetail(

DeviceInfoSet,

DeviceManagementApiDeclarations.SetupDiGetDeviceInterfaceDetail(

DeviceInfoSet,

 

参考 MyDeviceInterfaceData,

 

ref MyDeviceInterfaceData,

 

IntPtr .0, BufferSize, IntPtr .零);

 

IntPtr.Zero, 0, ref BufferSize, IntPtr.Zero);

 

 

调试 .WriteLine(MyDebugging.ResultOfAPICall(

Debug.WriteLine(MyDebugging.ResultOfAPICall("SetupDiGetDeviceInterfaceDetail"));

 

调试 .WriteLine(

Debug.WriteLine(" (OK to say too small)");

 

调试 .WriteLine(

Debug.WriteLine(" Required buffer size for the data: " + BufferSize);

 

 

//存储结构的尺寸.

 

//MyDeviceInterfaceDetailData.cbSize = MyDeviceInterfaceDetailData.ToString ().长度;

MyDeviceInterfaceDetailData.cbSize =

MyDeviceInterfaceDetailData.cbSize =

元帅 .SizeOf(MyDeviceInterfaceDetailData);

 

Marshal.SizeOf(MyDeviceInterfaceDetailData);

 

 

//使用以下方法为MyDeviceInterfaceDetailData结构分配内存返回的缓冲区大小.

 

IntPtr DetailDataBuffer = .AllocHGlobal(BufferSize);

 

IntPtr DetailDataBuffer = Marshal.AllocHGlobal(BufferSize);

 

 

//在前4个字节中存储cbSize数组的

 

元帅 .WriteInt32(DetailDataBuffer,4 + .SystemDefaultCharSize);

 

Marshal.WriteInt32(DetailDataBuffer, 4 + Marshal.SystemDefaultCharSize);

 

调试 .WriteLine( + MyDeviceInterfaceDetailData.cbSize);

 

Debug.WriteLine("cbsize = " + MyDeviceInterfaceDetailData.cbSize);

 

 

//再次调用SetupDiGetDeviceInterfaceDetail.

 

//这次,将指针传递给DetailDataBuffer

 

//和返回的所需缓冲区大小.

成功=

DeviceManagementApiDeclarations .SetupDiGetDeviceInterfaceDetail(

DeviceInfoSet,

DeviceManagementApiDeclarations.SetupDiGetDeviceInterfaceDetail (

DeviceInfoSet,

 

参考 MyDeviceInterfaceData,

DetailDataBuffer

ref MyDeviceInterfaceData,

DetailDataBuffer,

BufferSize,

BufferSize,

 

参考 BufferSize,

 

ref BufferSize,

 

IntPtr .为零);

 

IntPtr.Zero);

 

 

调试 .WriteLine(MyDebugging.ResultOfAPICall(

Debug.WriteLine(MyDebugging.ResultOfAPICall(" Result of second call: "));

 

调试 .WriteLine(

Debug.WriteLine(" MyDeviceInterfaceDetailData.cbSize: " + MyDeviceInterfaceDetailData.cbSize.ToString());

 

 

//跳过cbsize(4个字节)获取devicePathName的地址.

 

IntPtr pdevicePathName = IntPtr

IntPtr pdevicePathName = new IntPtr(DetailDataBuffer.ToInt32() + 4);

 

 

//获取包含devicePathName的字符串.

SingledevicePathName =

SingledevicePathName =

元帅 .PtrToStringAuto(pdevicePathName);

devicePathName [MemberIndex] = SingledevicePathName;

Marshal.PtrToStringAuto(pdevicePathName);

devicePathName[MemberIndex] = SingledevicePathName;

 

 

调试 .WriteLine(

Debug.WriteLine("Device Path = " + devicePathName[MemberIndex]);

 

//Debug.WriteLine("设备路径长度="+ Marshal.SizeOf(devicePathName [MemberIndex]));

 

调试 .WriteLine(

Debug.WriteLine("Device Path Length = " + devicePathName[MemberIndex].Length);

 

 

//释放AllocHGlobal先前分配的内存

 

元帅 .FreeHGlobal(DetailDataBuffer);

DeviceFound =

Marshal.FreeHGlobal(DetailDataBuffer);

DeviceFound =

;

}

true;

}

MemberIndex ++;

MemberIndex++;

}

同时 (!LastDevice);

 

while (!LastDevice);

 

 

//将数组修剪为找到设备.

 

调试 .WriteLine( +(MemberIndex-1).ToString() );

 

Debug.WriteLine("Number of HIDs found = " + (MemberIndex - 1).ToString());

 

 

//***

 

//API函数:

 

//SetupDiDestroyDeviceInfoList

 

//目的:

 

//释放为DeviceInfoSet保留的内存由SetupDiGetClassDevs返回.

 

//接受:

 

//SetupDiGetClassDevs返回的DeviceInfoSet.

 

//返回:

 

//成功则为True,失败则为False

 

//***

 

结果=

DeviceManagementApiDeclarations .SetupDiDestroyDeviceInfoList(DeviceInfoSet);

 

DeviceManagementApiDeclarations.SetupDiDestroyDeviceInfoList(DeviceInfoSet);

 

 

调试 .WriteLine(MyDebugging.ResultOfAPICall( "DestroyDeviceInfoList"));

 

Debug.WriteLine(MyDebugging.ResultOfAPICall("DestroyDeviceInfoList"));

 

}

catch (Exception ex) {

HandleException(ModuleName +

catch (Exception ex) {

HandleException(ModuleName +

":" + System.Reflection.MethodBase.GetCurrentMethod(), ex);

}

Thank you.

":" + System.Reflection.MethodBase.GetCurrentMethod(), ex);

}

Thank you.

推荐答案

Hello, 

感谢您的信息!我建议您在( Windows客户端技术中心 > Windows 7 IT Pro论坛 http://social.technet.microsoft.com/Forums/en/w7itproappcompat/threads ).

Thank you for your post!  I would suggest creating a new thread for your question in the (Windows Client TechCenter > Windows 7 IT Pro Forums > Windows 7 Application Compatibility ) forum located here:  (http://social.technet.microsoft.com/Forums/en/w7itproappcompat/threads).

希望会有所帮助.

祝您度过愉快的一天!

感谢&问候,


这篇关于在Windows 7下,函数SetupDiEnumDeviceInterfaces失败,并显示1008错误代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆