C#ReadFile()错误代码1008

时间:2017-04-12 16:05:54

标签: c# windows error-code

我正在使用HID库,当我调用device.ReadInput()(它实际上只是调用Windows ReadFile()函数)时,函数失败,我得到一个1008错误代码。

1008表示ERROR_NO_TOKEN。 (试图引用不存在的令牌。)

有谁知道这意味着什么,尤其是在引用Windows ReadFile()函数时?

Debug.WriteLine("About to read...");
bool read = device.ReadInput();
byte[] dataBuf = device.Inputs.DataBuf;
byte[] retData;

if (!read) {
    int x = System.Runtime.InteropServices.Marshal.GetLastWin32Error();
    Debug.WriteLine("Error code: " + x);
    return;
}

0 个答案:

没有答案