RT...

解决方案 »

  1.   

    (转)DeviceIoControl的使用说明 2008-12-03 11:24
    分类:技术资料分享 字号: 大大  中中  小小         应用程序和驱动程序的通信过程是:应用程序使用CreateFile函数打开设备,然后用DeviceIoControl与驱动程序进行通信,包括读和写两种操作。还可以用ReadFile读数据用WriteFile写数据。操作完毕时用CloseHandle关闭设备。我们比较常用的就是用DeviceIoControl对设备进行读写操作。先看看DeviceIoControl是怎么定义的:BOOL DeviceIoControl(
      HANDLE hDevice, 
      DWORD dwIoControlCode, 
      LPVOID lpInBuffer, 
      DWORD nInBufferSize, 
      LPVOID lpOutBuffer, 
      DWORD nOutBufferSize, 
      LPDWORD lpBytesReturned, 
      LPOVERLAPPED lpOverlapped
    );Parameters(参数)
    hDevice (CreateFile返回的设备句柄) 
    [in] Handle to the device that is to perform the operation. To obtain a device handle, call the CreateFile function. 
    dwIoControlCode (应用程序调用驱动程序的控制命令,就是IOCTL_XXX IOCTLs ) 
    [in] IOCTL for the operation. This value identifies the specific operation to perform and the type of device on which to perform the operation. There are no specific values defined for the dwIoControlCode parameter. However, you can define custom IOCTL_XXX IOCTLs with the CTL_CODE macro. You can then advertise these IOCTLs and an application can use these IOCTLs with DeviceIoControl to perform the driver-specific functions. 
    lpInBuffer (应用程序传递给驱动程序的数据缓冲区地址) 
    [in] Long pointer to a buffer that contains the data required to perform the operation. Set to NULL if the dwIoControlCode parameter specifies an operation that does not require input data. 
    nInBufferSize (应用程序传递给驱动程序的数据缓冲区大小,字节数) 
    [in] Size, in bytes, of the buffer pointed to by lpInBuffer. 
    lpOutBuffer (驱动程序返回给应用程序的数据缓冲区地址) 
    [out] Long pointer to a buffer that receives the output data for the operation. Set to NULL if the dwIoControlCode parameter specifies an operation that does not produce output data. 
    nOutBufferSize (驱动程序返回给应用程序的数据缓冲区大小,字节数) 
    [out] Size, in bytes, of the buffer pointed to by lpOutBuffer. 
    lpBytesReturned (驱动程序实际返回给应用程序的数据字节数地址) 
    [out] Long pointer to a variable that receives the size, in bytes, of the data stored in lpOutBuffer. The DeviceIoControl function may unnecessarily use this parameter. For example, if an operation does not produce data for lpOutBuffer and lpOutBuffer is NULL, the value of lpBytesReturned is meaningless. 
    lpOverlapped (重叠操作结构) 
    [in] Ignored; set to NULL. 
    Return Values(返回值)
    Nonzero indicates success. Zero indicates failure. To obtain extended error information, call the GetLastError function. (非0成功,0失败)具体使用我们看看列子:1,向设备传递数据,我们定义一个函数来实现bool CDeviceOperDlg::SendKeyData(HANDLE handle, BYTE *bData, int iSize)
    {
    ULONG nOutput;
    BYTE bTemp[512];//将数据放置到发送数组
    memset(bTemp,0,sizeof(bTemp));
    memcpy(bTemp,&bData[0],iSize);
    //向设备发送
    if (!DeviceIoControl(handle,         
           ATST2004_IOCTL_WRITE,     //根据具体的设备有相关的定义
           bTemp,                                        //向设备传递的数据地址
           iSize,                                            //数据大小,字节数
           NULL,                                          //没有返回的数据,置为NULL
           0,                                                  //没有返回的数据,置为0       &nOutput,
           NULL)
        )
    {
       return false;
    }return true;
    }2,从设备读取数据
    bool CDeviceOperDlg::ReviceKeyData(HANDLE handle, BYTE *bData, int iSize)
    {ULONG nOutput;
    BYTE bTemp[512];
    //数组清零
    memset(bTemp,0,sizeof(bTemp));
    //向设备发送
    if (!DeviceIoControl(handle,
           ATST2004_IOCTL_READ,           //根据具体的设备有相关的定义
           NULL,                                              //没有向设备传递的数据,置为NULL
           0,                                                      //没有向设备传递的数据,置为NULL
           bTemp,                                            //读取设备的数据返回地址
           iSize,                                                //读取数据的字节数
           &nOutput,
           NULL)
        )
    {
       return false;
    }
    //放置到公用数组
    memcpy(&bData[0],&bTemp[0],iSize);
    return true;
    }
      

  2.   

    (转)DeviceIoControl的使用说明 2008-12-03 11:24
    分类:技术资料分享 字号: 大大  中中  小小         应用程序和驱动程序的通信过程是:应用程序使用CreateFile函数打开设备,然后用DeviceIoControl与驱动程序进行通信,包括读和写两种操作。还可以用ReadFile读数据用WriteFile写数据。操作完毕时用CloseHandle关闭设备。我们比较常用的就是用DeviceIoControl对设备进行读写操作。先看看DeviceIoControl是怎么定义的:BOOL DeviceIoControl(
      HANDLE hDevice, 
      DWORD dwIoControlCode, 
      LPVOID lpInBuffer, 
      DWORD nInBufferSize, 
      LPVOID lpOutBuffer, 
      DWORD nOutBufferSize, 
      LPDWORD lpBytesReturned, 
      LPOVERLAPPED lpOverlapped
    );Parameters(参数)
    hDevice (CreateFile返回的设备句柄) 
    [in] Handle to the device that is to perform the operation. To obtain a device handle, call the CreateFile function. 
    dwIoControlCode (应用程序调用驱动程序的控制命令,就是IOCTL_XXX IOCTLs ) 
    [in] IOCTL for the operation. This value identifies the specific operation to perform and the type of device on which to perform the operation. There are no specific values defined for the dwIoControlCode parameter. However, you can define custom IOCTL_XXX IOCTLs with the CTL_CODE macro. You can then advertise these IOCTLs and an application can use these IOCTLs with DeviceIoControl to perform the driver-specific functions. 
    lpInBuffer (应用程序传递给驱动程序的数据缓冲区地址) 
    [in] Long pointer to a buffer that contains the data required to perform the operation. Set to NULL if the dwIoControlCode parameter specifies an operation that does not require input data. 
    nInBufferSize (应用程序传递给驱动程序的数据缓冲区大小,字节数) 
    [in] Size, in bytes, of the buffer pointed to by lpInBuffer. 
    lpOutBuffer (驱动程序返回给应用程序的数据缓冲区地址) 
    [out] Long pointer to a buffer that receives the output data for the operation. Set to NULL if the dwIoControlCode parameter specifies an operation that does not produce output data. 
    nOutBufferSize (驱动程序返回给应用程序的数据缓冲区大小,字节数) 
    [out] Size, in bytes, of the buffer pointed to by lpOutBuffer. 
    lpBytesReturned (驱动程序实际返回给应用程序的数据字节数地址) 
    [out] Long pointer to a variable that receives the size, in bytes, of the data stored in lpOutBuffer. The DeviceIoControl function may unnecessarily use this parameter. For example, if an operation does not produce data for lpOutBuffer and lpOutBuffer is NULL, the value of lpBytesReturned is meaningless. 
    lpOverlapped (重叠操作结构) 
    [in] Ignored; set to NULL. 
    Return Values(返回值)
    Nonzero indicates success. Zero indicates failure. To obtain extended error information, call the GetLastError function. (非0成功,0失败)具体使用我们看看列子:1,向设备传递数据,我们定义一个函数来实现bool CDeviceOperDlg::SendKeyData(HANDLE handle, BYTE *bData, int iSize)
    {
    ULONG nOutput;
    BYTE bTemp[512];//将数据放置到发送数组
    memset(bTemp,0,sizeof(bTemp));
    memcpy(bTemp,&bData[0],iSize);
    //向设备发送
    if (!DeviceIoControl(handle,         
           ATST2004_IOCTL_WRITE,     //根据具体的设备有相关的定义
           bTemp,                                        //向设备传递的数据地址
           iSize,                                            //数据大小,字节数
           NULL,                                          //没有返回的数据,置为NULL
           0,                                                  //没有返回的数据,置为0       &nOutput,
           NULL)
        )
    {
       return false;
    }return true;
    }2,从设备读取数据
    bool CDeviceOperDlg::ReviceKeyData(HANDLE handle, BYTE *bData, int iSize)
    {ULONG nOutput;
    BYTE bTemp[512];
    //数组清零
    memset(bTemp,0,sizeof(bTemp));
    //向设备发送
    if (!DeviceIoControl(handle,
           ATST2004_IOCTL_READ,           //根据具体的设备有相关的定义
           NULL,                                              //没有向设备传递的数据,置为NULL
           0,                                                      //没有向设备传递的数据,置为NULL
           bTemp,                                            //读取设备的数据返回地址
           iSize,                                                //读取数据的字节数
           &nOutput,
           NULL)
        )
    {
       return false;
    }
    //放置到公用数组
    memcpy(&bData[0],&bTemp[0],iSize);
    return true;
    }
      

  3.   

    不知道如何使用下面两个函数,来禁止和启用优盘的USB?
    不清楚优盘的驱动名称该传什么参数?
    以及DeviceIOControl中指针参数如何传?
    请对这块熟悉的朋友提下建议,谢谢
    void CP1Dlg::OnButton1() 
    {
    HANDLE hDevice;
    hDevice = CreateFile(
    "\\.\PhysicalDrive0",                        //要打开的驱动名称 GENERIC_READ|GENERIC_WRITE,                  //访问方式
    FILE_SHARE_READ|FILE_SHARE_WRITE,            //共享方式
    NULL,                                        //安全描述符指针
    OPEN_EXISTING,                               //创建方式
    0,                                           //文件属性及标志
    NULL                                         //模板文件的句柄
    );

    bool  retCode = DeviceIoControl(hDevice,         //驱动的句柄   
    IOCTL_DISK_GET_DRIVE_GEOMETRY,           //给设备发送的消息代码   
    NULL,                                    //输入缓冲区地址   
    0,                                       //输入缓冲区字节   
    NULL,                                    //输出缓冲区地址   
    0,                                       //输出缓冲区字节  
    &bytesReturned,                          // byte count
    NULL);                                   // overlapped information CloseHandle(hDevice);
    }