资源简介
PCI 9056的驱动程序,利用它修改修改可以使用于其他系列的驱动。

代码片段和文件信息
// OpenByIntf.cpp - open device by device interface
// Copyright (c) 1998 Compuware Corporation
#define NOCRYPT // prevent attempt to include missing files
#define _INC_EXCPT // prevent excpt.h from being included
#include
#include
#include
#include // DriverWorks
// OpenByInterface
//
// Opens the nth device found with the given interface class
HANDLE OpenByInterface(
GUID* pClassGuid // points to the GUID that identifies the interface class
DWORD instance // specifies which instance of the enumerated devices to open
PDWORD pError // address of variable to receive error status
)
{
HANDLE hDev;
CDeviceInterfaceClass DevClass(pClassGuid pError);
if (*pError != ERROR_SUCCESS)
return INVALID_HANDLE_VALUE;
CDeviceInterface DevInterface(&DevClass instance pError);
if (*pError != ERROR_SUCCESS)
return INVALID_HANDLE_VALUE;
hDev = CreateFile(
DevInterface.DevicePath()
GENERIC_READ | GENERIC_WRITE
FILE_SHARE_READ | FILE_SHARE_WRITE
NULL
OPEN_EXISTING
FILE_ATTRIBUTE_NORMAL
NULL
);
if (hDev == INVALID_HANDLE_VALUE)
*pError = GetLastError();
return hDev;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 15 2010-05-17 14:32 PCI9056\dirs
文件 3374 2010-05-17 14:32 PCI9056\exe\buildchk.log
文件 291 2010-05-17 14:32 PCI9056\exe\makefile
文件 362 2010-05-17 14:32 PCI9056\exe\obj\_ob
文件 16406 2010-05-17 20:56 PCI9056\exe\objchk\i386\OpenByIntf.obj
文件 0 2010-05-17 14:32 PCI9056\exe\objchk\i386\openbyintf.sbr
文件 1827840 2010-05-17 14:32 PCI9056\exe\objchk\i386\Test_PCI9056.bsc
文件 151625 2010-05-17 20:56 PCI9056\exe\objchk\i386\Test_PCI9056.exe
文件 115712 2010-05-17 20:56 PCI9056\exe\objchk\i386\Test_PCI9056.idb
文件 256912 2010-05-17 20:56 PCI9056\exe\objchk\i386\Test_PCI9056.ilk
文件 19300 2010-05-17 20:56 PCI9056\exe\objchk\i386\Test_PCI9056.obj
文件 2429876 2010-05-17 20:56 PCI9056\exe\objchk\i386\Test_PCI9056.pch
文件 692224 2010-05-17 20:56 PCI9056\exe\objchk\i386\test_pci9056.pdb
文件 0 2010-05-17 14:32 PCI9056\exe\objchk\i386\test_pci9056.sbr
文件 1223 2010-05-17 14:32 PCI9056\exe\OpenByIntf.cpp
文件 383 2010-05-17 14:32 PCI9056\exe\sources
文件 13699 2010-05-17 14:32 PCI9056\exe\Test_PCI9056.cpp
文件 9665 2010-05-17 14:32 PCI9056\exe\Test_PCI9056.dsp
文件 549 2010-05-17 14:32 PCI9056\exe\Test_PCI9056.dsw
文件 50176 2010-05-17 14:32 PCI9056\exe\Test_PCI9056.ncb
文件 53760 2010-05-17 14:32 PCI9056\exe\Test_PCI9056.opt
文件 2092 2010-05-17 20:56 PCI9056\exe\Test_PCI9056.plg
文件 395 2010-05-17 20:56 PCI9056\PCI9056.bbs
文件 435 2010-05-17 14:32 PCI9056\PCI9056.dsw
文件 123904 2010-05-18 14:30 PCI9056\PCI9056.ncb
文件 278016 2010-05-18 14:30 PCI9056\PCI9056.opt
文件 419 2010-05-17 14:32 PCI9056\PCI9056DeviceInterface.h
文件 611 2010-05-17 14:32 PCI9056\PCI9056ioctl.h
文件 1612 2010-05-17 14:32 PCI9056\readme.txt
文件 509 2010-05-17 14:32 PCI9056\sys\function.h
............此处省略36个文件信息
- 上一篇:arm7用户手册中文非常详细
- 下一篇:实现多个文件上传
相关资源
- 双木三林_XMOS driver V4.6
- 430系列单片机USBFET下载驱动
- 基于Filter-Hook Driver的个人防火墙
- 串口虚拟工具Configure Virtual Serial Por
- DriverAssitant_v4.91
- Driver Reviver 驱动管理工具 v4.0.1.60 官方
- sas卡驱动,用于lsi的sas卡
- PC Camera Driver 官方版
- TeraJDBC__indep_indep.16.20.00.06.zip
- Fuse_Drivers_x64.
- MCP3421 STM32 Driver
- ADS1100 STM32 Driver
- chromedriver
- chromedriver_2.38
- 纯dos622操作系统下的光驱驱动程序,
- Qualcomm HS USB Driver
- ftdi cdm drivers v2.12.0 官方WHQL版
- (PSP录制屏幕)USBHost_driver
- Quectel LTE USB win Driver
- Quectel_Windows_USB_Drivers_for_EC21&EC25;_V1.
- pl2303_driverinstallerv1.7.0
- Intel Driver Update Utility v2.7.1.1.zip
- Display Driver Uninstaller v18.0.1.4.zip
- 虚拟串口破解版 VirtualSerialPortDriver8
- PCAN_USB_Win_x64-driver.rar
- chromedriver_win32适用于 72.0.3626.119正式版
- WindriverPCIE驱动
- Virtual Serial Port Driver 6 9 注册 破解版
- Cy7c68013a在Win7下驱动x64和x86
- hdmi输入芯片SiI9134/SiI9135的数据手册及
评论
共有 条评论