├── 10 ├── Splitter │ ├── Bin │ │ ├── Spliter.inf │ │ └── 无标题.png │ ├── Source │ │ ├── Pin.cpp │ │ ├── Pin.h │ │ ├── Spliter.cpp │ │ ├── Spliter.h │ │ ├── Spliter.rc │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── makefile │ │ └── sources │ ├── Spliter.vcproj │ └── 关于.docx └── 读我.txt ├── 11 ├── ASIO │ ├── Source │ │ ├── V-ASIO.def │ │ ├── asiosample.txt │ │ ├── asiosmpl.cpp │ │ ├── asiosmpl.h │ │ ├── objfre_win7_x86 │ │ │ └── i386 │ │ │ │ └── asiosmpl.obj.oacr.root.x86fre.pft.xml │ │ └── sources │ ├── V-ASIO_User.vcproj │ └── common │ │ ├── asio.cpp │ │ ├── asio.h │ │ ├── asiodrvr.cpp │ │ ├── asiodrvr.h │ │ ├── asiosys.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── debugmessage.cpp │ │ ├── dllentry.cpp │ │ ├── iasiodrv.h │ │ ├── register.cpp │ │ └── wxdebug.h ├── AsioSimTool │ ├── AsioSimTool.cpp │ ├── AsioSimTool.vcproj │ ├── PlayMusicFile.cpp │ ├── PlayMusicFile.h │ ├── ReadMe.txt │ ├── asio.h │ ├── asiolist.cpp │ ├── asiolist.h │ ├── asiotool.h │ ├── command.cpp │ ├── command.h │ ├── stdafx.cpp │ └── stdafx.h ├── Bin │ ├── V-ASIO.inf │ └── i386 │ │ ├── V-ASIO.pdb │ │ └── V-ASIO.sys ├── Kernel │ ├── Source │ │ ├── ASIO.c │ │ ├── MAKEFILE │ │ ├── Main.c │ │ ├── Main.h │ │ ├── objfre_win7_x86 │ │ │ └── i386 │ │ │ │ ├── asio.obj.oacr.root.x86fre.pft.xml │ │ │ │ └── main.obj.oacr.root.x86fre.pft.xml │ │ ├── public.h │ │ └── sources │ └── V-ASIO.vcproj ├── install.bat ├── uninstall.bat └── 关于.docx ├── 13 ├── Inf │ ├── AddReg.inf │ ├── CopyFiles.inf │ ├── DelFiles.inf │ ├── DelReg.inf │ ├── ProfileItems.inf │ ├── RenFiles.inf │ ├── Services.inf │ ├── Services_DEL.inf │ ├── ini.inf │ └── test.txt └── InfRun.exe ├── 14 ├── DrvInst.exe └── DrvInst │ ├── DrvDeletePage.cpp │ ├── DrvDeletePage.h │ ├── DrvInst.cpp │ ├── DrvInst.h │ ├── DrvInst.rc │ ├── DrvInst.vcproj │ ├── DrvInstPage.cpp │ ├── DrvInstPage.h │ ├── DrvInstSheetEx.cpp │ ├── DrvInstSheetEx.h │ ├── FinishPage.cpp │ ├── FinishPage.h │ ├── HIDPage.cpp │ ├── HIDPage.h │ ├── ReadMe.txt │ ├── StartPage.cpp │ ├── StartPage.h │ ├── XHyperLink.cpp │ ├── XHyperLink.h │ ├── res │ ├── DrvInst.ico │ ├── DrvInst.rc2 │ ├── ICON.ico │ ├── background.bmp │ ├── baner16.bmp │ ├── header.bmp │ └── water16.bmp │ ├── resource.h │ ├── setup.cpp │ ├── setup.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 01 ├── HelloDRIVER │ ├── HelloDRIVER.c │ ├── HelloDRIVER.h │ ├── MAKEFILE │ ├── ReadMe.txt │ └── SOURCES └── HelloWorld │ ├── HelloWorld.c │ ├── MAKEFILE │ ├── ReadMe.txt │ └── SOURCES ├── 04 ├── CY001_ClsInst │ ├── CY001_ClsInst.def │ ├── MAKEFILE │ ├── classInst_CY001.c │ ├── classinst_CY001.rc │ ├── resource.h │ └── sources ├── Common │ ├── IoCtl.h │ ├── NewDelete.h │ ├── Structure.h │ └── public.h ├── WDF_CY001 │ ├── CY001.vcproj │ ├── Debug.c │ ├── Device.c │ ├── DeviceIO.c │ ├── Main.c │ ├── Pnp_Pwr.c │ ├── ReadWrite.c │ ├── Util.c │ ├── makefile │ ├── public.h │ ├── readme.txt │ └── sources └── 安装 │ ├── AMD64 │ ├── CY001.sys │ ├── CY001_ClsInst.dll │ └── WdfCoInstaller01009.dll │ ├── CY001(1Interface).hex │ ├── CY001(2Interfaces).hex │ ├── CY001.inf │ ├── DrvInst.exe │ ├── UsbKitApp.exe │ └── i386 │ ├── CY001.sys │ ├── CY001_ClsInst.dll │ └── WdfCoInstaller01009.dll ├── 05 ├── 1394_kmdf │ ├── dirs │ └── vdev_hybrid │ │ ├── Bin │ │ ├── WDF │ │ │ ├── WUDFUpdate_01009.dll │ │ │ ├── WUDFUpdate_01009_chk.dll │ │ │ ├── WdfCoInstaller01009.dll │ │ │ └── WdfCoInstaller01009_chk.dll │ │ ├── WDF1394.exe │ │ ├── kmdf1394vdev.sys │ │ ├── umdf1394vdev.dll │ │ ├── wdf1394vdev.inf │ │ └── 关于.docx │ │ ├── dirs │ │ ├── exe │ │ ├── 1394.c │ │ ├── 1394.h │ │ ├── async.c │ │ ├── async.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── isoch.c │ │ ├── isoch.h │ │ ├── local.h │ │ ├── makefile │ │ ├── pch.h │ │ ├── resource.h │ │ ├── sources │ │ ├── umdf1394vdev.dll │ │ ├── util.c │ │ ├── util.h │ │ ├── wdf1394.c │ │ ├── wdf1394.ico │ │ └── wdf1394.rc │ │ ├── inc │ │ ├── wdf_common.h │ │ └── wdf_vdev_api.h │ │ ├── kmdf │ │ ├── kmdf_vdev.c │ │ ├── kmdf_vdev.h │ │ ├── kmdf_vdev.rc │ │ ├── kmdf_vdev_api.c │ │ ├── kmdf_vdev_async.c │ │ ├── kmdf_vdev_debug.h │ │ ├── kmdf_vdev_ioctl.c │ │ ├── kmdf_vdev_isoch.c │ │ ├── kmdf_vdev_pnp.c │ │ ├── kmdf_vdev_sample.h │ │ ├── kmdf_vdev_utils.c │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── sources │ │ └── wdf1394vdev.inx │ │ ├── umdf │ │ ├── exports.def │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── sources │ │ ├── umdf_vdev.h │ │ ├── umdf_vdev.rc │ │ ├── umdf_vdev_com.cpp │ │ ├── umdf_vdev_com.h │ │ ├── umdf_vdev_device.cpp │ │ ├── umdf_vdev_device.h │ │ ├── umdf_vdev_dll.cpp │ │ ├── umdf_vdev_driver.cpp │ │ ├── umdf_vdev_driver.h │ │ ├── umdf_vdev_parallelqueue.cpp │ │ ├── umdf_vdev_parallelqueue.h │ │ ├── umdf_vdev_sequentialqueue.cpp │ │ └── umdf_vdev_sequentialqueue.h │ │ └── wdf1394vdev.htm └── 读我.txt ├── 06 ├── Common │ ├── IoCtl.h │ ├── NewDelete.h │ ├── Structure.h │ └── public.h ├── UsbBaseClass │ ├── DrvClass.cpp │ ├── DrvClass.h │ ├── Main.cpp │ ├── UsbBaseClass.vcproj │ ├── class.cpp │ ├── makefile │ ├── readme.txt │ └── sources ├── WDF_CY001 │ ├── CY001.vcproj │ ├── CY001Drv.cpp │ ├── CY001Drv.h │ ├── Debug.c │ ├── Device.cpp │ ├── DeviceIO.cpp │ ├── DrvClass.cpp │ ├── DrvClass.h │ ├── Main.cpp │ ├── NewDelete.h │ ├── Pnp_Pwr.cpp │ ├── ReadWrite.cpp │ ├── Util.cpp │ ├── makefile │ ├── public.h │ ├── readme.txt │ ├── sources │ └── subClass.h ├── WDM │ ├── MAKEFILE │ ├── SOURCES │ ├── SRVINSTW.EXE │ ├── WDM++.cpp │ └── 读我.txt └── simClass │ ├── Main.cpp │ ├── makefile │ ├── readme.txt │ ├── simClass.vcproj │ └── sources ├── 09 ├── inverted_call │ ├── AppDrv.dsp │ ├── AppDrv.dsw │ ├── DIRS │ ├── TestApp │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TestApp.aps │ │ ├── TestApp.clw │ │ ├── TestApp.cpp │ │ ├── TestApp.dsp │ │ ├── TestApp.h │ │ ├── TestApp.plg │ │ ├── TestApp.rc │ │ └── vssver.scc │ ├── driver │ │ ├── Driver.dsp │ │ ├── Driver.plg │ │ ├── MAKEFILE │ │ ├── comm-ioctl.h │ │ ├── comm.cpp │ │ ├── comm.h │ │ ├── sources │ │ └── vssver.scc │ └── service │ │ ├── AppSrv.cpp │ │ ├── AppSrv.dsp │ │ ├── AppSrv.h │ │ ├── AppSrv.plg │ │ ├── AppSrv.rc │ │ ├── MAKEFILE │ │ ├── NTServMsg.mc │ │ ├── NTService.cpp │ │ ├── NTService.h │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── ntservmsg.h │ │ ├── reflectorservice.cpp │ │ ├── reflectorservice.h │ │ ├── sources │ │ └── vssver.scc └── 读我.txt ├── my_build.bat ├── my_clean.bat └── 读我.doc /01/HelloDRIVER/HelloDRIVER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloDRIVER/HelloDRIVER.c -------------------------------------------------------------------------------- /01/HelloDRIVER/HelloDRIVER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloDRIVER/HelloDRIVER.h -------------------------------------------------------------------------------- /01/HelloDRIVER/MAKEFILE: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def 2 | 3 | -------------------------------------------------------------------------------- /01/HelloDRIVER/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloDRIVER/ReadMe.txt -------------------------------------------------------------------------------- /01/HelloDRIVER/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloDRIVER/SOURCES -------------------------------------------------------------------------------- /01/HelloWorld/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloWorld/HelloWorld.c -------------------------------------------------------------------------------- /01/HelloWorld/MAKEFILE: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def 2 | 3 | -------------------------------------------------------------------------------- /01/HelloWorld/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloWorld/ReadMe.txt -------------------------------------------------------------------------------- /01/HelloWorld/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/01/HelloWorld/SOURCES -------------------------------------------------------------------------------- /04/CY001_ClsInst/CY001_ClsInst.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/CY001_ClsInst.def -------------------------------------------------------------------------------- /04/CY001_ClsInst/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/MAKEFILE -------------------------------------------------------------------------------- /04/CY001_ClsInst/classInst_CY001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/classInst_CY001.c -------------------------------------------------------------------------------- /04/CY001_ClsInst/classinst_CY001.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/classinst_CY001.rc -------------------------------------------------------------------------------- /04/CY001_ClsInst/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/resource.h -------------------------------------------------------------------------------- /04/CY001_ClsInst/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/CY001_ClsInst/sources -------------------------------------------------------------------------------- /04/Common/IoCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/Common/IoCtl.h -------------------------------------------------------------------------------- /04/Common/NewDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/Common/NewDelete.h -------------------------------------------------------------------------------- /04/Common/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/Common/Structure.h -------------------------------------------------------------------------------- /04/Common/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/Common/public.h -------------------------------------------------------------------------------- /04/WDF_CY001/CY001.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/CY001.vcproj -------------------------------------------------------------------------------- /04/WDF_CY001/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/Debug.c -------------------------------------------------------------------------------- /04/WDF_CY001/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/Device.c -------------------------------------------------------------------------------- /04/WDF_CY001/DeviceIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/DeviceIO.c -------------------------------------------------------------------------------- /04/WDF_CY001/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/Main.c -------------------------------------------------------------------------------- /04/WDF_CY001/Pnp_Pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/Pnp_Pwr.c -------------------------------------------------------------------------------- /04/WDF_CY001/ReadWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/ReadWrite.c -------------------------------------------------------------------------------- /04/WDF_CY001/Util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/Util.c -------------------------------------------------------------------------------- /04/WDF_CY001/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/makefile -------------------------------------------------------------------------------- /04/WDF_CY001/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/public.h -------------------------------------------------------------------------------- /04/WDF_CY001/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/readme.txt -------------------------------------------------------------------------------- /04/WDF_CY001/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/WDF_CY001/sources -------------------------------------------------------------------------------- /04/安装/AMD64/CY001.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/AMD64/CY001.sys -------------------------------------------------------------------------------- /04/安装/AMD64/CY001_ClsInst.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/AMD64/CY001_ClsInst.dll -------------------------------------------------------------------------------- /04/安装/AMD64/WdfCoInstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/AMD64/WdfCoInstaller01009.dll -------------------------------------------------------------------------------- /04/安装/CY001(1Interface).hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/CY001(1Interface).hex -------------------------------------------------------------------------------- /04/安装/CY001(2Interfaces).hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/CY001(2Interfaces).hex -------------------------------------------------------------------------------- /04/安装/CY001.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/CY001.inf -------------------------------------------------------------------------------- /04/安装/DrvInst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/DrvInst.exe -------------------------------------------------------------------------------- /04/安装/UsbKitApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/UsbKitApp.exe -------------------------------------------------------------------------------- /04/安装/i386/CY001.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/i386/CY001.sys -------------------------------------------------------------------------------- /04/安装/i386/CY001_ClsInst.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/i386/CY001_ClsInst.dll -------------------------------------------------------------------------------- /04/安装/i386/WdfCoInstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/04/安装/i386/WdfCoInstaller01009.dll -------------------------------------------------------------------------------- /05/1394_kmdf/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/dirs -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/WDF/WUDFUpdate_01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/WDF/WUDFUpdate_01009.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/WDF/WUDFUpdate_01009_chk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/WDF/WUDFUpdate_01009_chk.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/WDF/WdfCoInstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/WDF/WdfCoInstaller01009.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/WDF/WdfCoInstaller01009_chk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/WDF/WdfCoInstaller01009_chk.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/WDF1394.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/WDF1394.exe -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/kmdf1394vdev.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/kmdf1394vdev.sys -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/umdf1394vdev.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/umdf1394vdev.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/wdf1394vdev.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/wdf1394vdev.inf -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/Bin/关于.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/Bin/关于.docx -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/dirs -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/1394.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/1394.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/1394.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/1394.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/async.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/async.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/debug.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/debug.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/isoch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/isoch.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/isoch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/isoch.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/local.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/makefile -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/pch.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/resource.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/sources -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/umdf1394vdev.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/umdf1394vdev.dll -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/util.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/util.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/wdf1394.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/wdf1394.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/wdf1394.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/wdf1394.ico -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/exe/wdf1394.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/exe/wdf1394.rc -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/inc/wdf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/inc/wdf_common.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/inc/wdf_vdev_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/inc/wdf_vdev_api.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev.rc -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_api.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_async.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_debug.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_ioctl.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_isoch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_isoch.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_pnp.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_sample.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/kmdf_vdev_utils.c -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/makefile -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/makefile.inc -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/sources -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/kmdf/wdf1394vdev.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/kmdf/wdf1394vdev.inx -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/exports.def -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/makefile -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/makefile.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/sources -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev.rc -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_com.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_com.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_device.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_device.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_dll.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_driver.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_driver.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_parallelqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_parallelqueue.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_parallelqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_parallelqueue.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_sequentialqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_sequentialqueue.cpp -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_sequentialqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/umdf/umdf_vdev_sequentialqueue.h -------------------------------------------------------------------------------- /05/1394_kmdf/vdev_hybrid/wdf1394vdev.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/1394_kmdf/vdev_hybrid/wdf1394vdev.htm -------------------------------------------------------------------------------- /05/读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/05/读我.txt -------------------------------------------------------------------------------- /06/Common/IoCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/Common/IoCtl.h -------------------------------------------------------------------------------- /06/Common/NewDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/Common/NewDelete.h -------------------------------------------------------------------------------- /06/Common/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/Common/Structure.h -------------------------------------------------------------------------------- /06/Common/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/Common/public.h -------------------------------------------------------------------------------- /06/UsbBaseClass/DrvClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/DrvClass.cpp -------------------------------------------------------------------------------- /06/UsbBaseClass/DrvClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/DrvClass.h -------------------------------------------------------------------------------- /06/UsbBaseClass/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/Main.cpp -------------------------------------------------------------------------------- /06/UsbBaseClass/UsbBaseClass.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/UsbBaseClass.vcproj -------------------------------------------------------------------------------- /06/UsbBaseClass/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/class.cpp -------------------------------------------------------------------------------- /06/UsbBaseClass/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/makefile -------------------------------------------------------------------------------- /06/UsbBaseClass/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/readme.txt -------------------------------------------------------------------------------- /06/UsbBaseClass/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/UsbBaseClass/sources -------------------------------------------------------------------------------- /06/WDF_CY001/CY001.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/CY001.vcproj -------------------------------------------------------------------------------- /06/WDF_CY001/CY001Drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/CY001Drv.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/CY001Drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/CY001Drv.h -------------------------------------------------------------------------------- /06/WDF_CY001/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/Debug.c -------------------------------------------------------------------------------- /06/WDF_CY001/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/Device.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/DeviceIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/DeviceIO.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/DrvClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/DrvClass.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/DrvClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/DrvClass.h -------------------------------------------------------------------------------- /06/WDF_CY001/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/Main.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/NewDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/NewDelete.h -------------------------------------------------------------------------------- /06/WDF_CY001/Pnp_Pwr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/Pnp_Pwr.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/ReadWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/ReadWrite.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/Util.cpp -------------------------------------------------------------------------------- /06/WDF_CY001/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/makefile -------------------------------------------------------------------------------- /06/WDF_CY001/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/public.h -------------------------------------------------------------------------------- /06/WDF_CY001/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/readme.txt -------------------------------------------------------------------------------- /06/WDF_CY001/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDF_CY001/sources -------------------------------------------------------------------------------- /06/WDF_CY001/subClass.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /06/WDM/MAKEFILE: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def 2 | 3 | -------------------------------------------------------------------------------- /06/WDM/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDM/SOURCES -------------------------------------------------------------------------------- /06/WDM/SRVINSTW.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDM/SRVINSTW.EXE -------------------------------------------------------------------------------- /06/WDM/WDM++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDM/WDM++.cpp -------------------------------------------------------------------------------- /06/WDM/读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/WDM/读我.txt -------------------------------------------------------------------------------- /06/simClass/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/simClass/Main.cpp -------------------------------------------------------------------------------- /06/simClass/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/simClass/makefile -------------------------------------------------------------------------------- /06/simClass/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/simClass/readme.txt -------------------------------------------------------------------------------- /06/simClass/simClass.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/simClass/simClass.vcproj -------------------------------------------------------------------------------- /06/simClass/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/06/simClass/sources -------------------------------------------------------------------------------- /09/inverted_call/AppDrv.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/AppDrv.dsp -------------------------------------------------------------------------------- /09/inverted_call/AppDrv.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/AppDrv.dsw -------------------------------------------------------------------------------- /09/inverted_call/DIRS: -------------------------------------------------------------------------------- 1 | DIRS=driver service 2 | -------------------------------------------------------------------------------- /09/inverted_call/TestApp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/Resource.h -------------------------------------------------------------------------------- /09/inverted_call/TestApp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/StdAfx.cpp -------------------------------------------------------------------------------- /09/inverted_call/TestApp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/StdAfx.h -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.aps -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.clw -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.cpp -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.dsp -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.h -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.plg -------------------------------------------------------------------------------- /09/inverted_call/TestApp/TestApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/TestApp.rc -------------------------------------------------------------------------------- /09/inverted_call/TestApp/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/TestApp/vssver.scc -------------------------------------------------------------------------------- /09/inverted_call/driver/Driver.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/Driver.dsp -------------------------------------------------------------------------------- /09/inverted_call/driver/Driver.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/Driver.plg -------------------------------------------------------------------------------- /09/inverted_call/driver/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/MAKEFILE -------------------------------------------------------------------------------- /09/inverted_call/driver/comm-ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/comm-ioctl.h -------------------------------------------------------------------------------- /09/inverted_call/driver/comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/comm.cpp -------------------------------------------------------------------------------- /09/inverted_call/driver/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/comm.h -------------------------------------------------------------------------------- /09/inverted_call/driver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/sources -------------------------------------------------------------------------------- /09/inverted_call/driver/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/driver/vssver.scc -------------------------------------------------------------------------------- /09/inverted_call/service/AppSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/AppSrv.cpp -------------------------------------------------------------------------------- /09/inverted_call/service/AppSrv.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/AppSrv.dsp -------------------------------------------------------------------------------- /09/inverted_call/service/AppSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/AppSrv.h -------------------------------------------------------------------------------- /09/inverted_call/service/AppSrv.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/AppSrv.plg -------------------------------------------------------------------------------- /09/inverted_call/service/AppSrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/AppSrv.rc -------------------------------------------------------------------------------- /09/inverted_call/service/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/MAKEFILE -------------------------------------------------------------------------------- /09/inverted_call/service/NTServMsg.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/NTServMsg.mc -------------------------------------------------------------------------------- /09/inverted_call/service/NTService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/NTService.cpp -------------------------------------------------------------------------------- /09/inverted_call/service/NTService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/NTService.h -------------------------------------------------------------------------------- /09/inverted_call/service/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/Resource.h -------------------------------------------------------------------------------- /09/inverted_call/service/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/StdAfx.cpp -------------------------------------------------------------------------------- /09/inverted_call/service/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/StdAfx.h -------------------------------------------------------------------------------- /09/inverted_call/service/ntservmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/ntservmsg.h -------------------------------------------------------------------------------- /09/inverted_call/service/reflectorservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/reflectorservice.cpp -------------------------------------------------------------------------------- /09/inverted_call/service/reflectorservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/reflectorservice.h -------------------------------------------------------------------------------- /09/inverted_call/service/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/sources -------------------------------------------------------------------------------- /09/inverted_call/service/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/inverted_call/service/vssver.scc -------------------------------------------------------------------------------- /09/读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/09/读我.txt -------------------------------------------------------------------------------- /10/Splitter/Bin/Spliter.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Bin/Spliter.inf -------------------------------------------------------------------------------- /10/Splitter/Bin/无标题.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Bin/无标题.png -------------------------------------------------------------------------------- /10/Splitter/Source/Pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/Pin.cpp -------------------------------------------------------------------------------- /10/Splitter/Source/Pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/Pin.h -------------------------------------------------------------------------------- /10/Splitter/Source/Spliter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/Spliter.cpp -------------------------------------------------------------------------------- /10/Splitter/Source/Spliter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/Spliter.h -------------------------------------------------------------------------------- /10/Splitter/Source/Spliter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/Spliter.rc -------------------------------------------------------------------------------- /10/Splitter/Source/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/filter.cpp -------------------------------------------------------------------------------- /10/Splitter/Source/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/filter.h -------------------------------------------------------------------------------- /10/Splitter/Source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/makefile -------------------------------------------------------------------------------- /10/Splitter/Source/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Source/sources -------------------------------------------------------------------------------- /10/Splitter/Spliter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/Spliter.vcproj -------------------------------------------------------------------------------- /10/Splitter/关于.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/Splitter/关于.docx -------------------------------------------------------------------------------- /10/读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/10/读我.txt -------------------------------------------------------------------------------- /11/ASIO/Source/V-ASIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/V-ASIO.def -------------------------------------------------------------------------------- /11/ASIO/Source/asiosample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/asiosample.txt -------------------------------------------------------------------------------- /11/ASIO/Source/asiosmpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/asiosmpl.cpp -------------------------------------------------------------------------------- /11/ASIO/Source/asiosmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/asiosmpl.h -------------------------------------------------------------------------------- /11/ASIO/Source/objfre_win7_x86/i386/asiosmpl.obj.oacr.root.x86fre.pft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/objfre_win7_x86/i386/asiosmpl.obj.oacr.root.x86fre.pft.xml -------------------------------------------------------------------------------- /11/ASIO/Source/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/Source/sources -------------------------------------------------------------------------------- /11/ASIO/V-ASIO_User.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/V-ASIO_User.vcproj -------------------------------------------------------------------------------- /11/ASIO/common/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/asio.cpp -------------------------------------------------------------------------------- /11/ASIO/common/asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/asio.h -------------------------------------------------------------------------------- /11/ASIO/common/asiodrvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/asiodrvr.cpp -------------------------------------------------------------------------------- /11/ASIO/common/asiodrvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/asiodrvr.h -------------------------------------------------------------------------------- /11/ASIO/common/asiosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/asiosys.h -------------------------------------------------------------------------------- /11/ASIO/common/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/combase.cpp -------------------------------------------------------------------------------- /11/ASIO/common/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/combase.h -------------------------------------------------------------------------------- /11/ASIO/common/debugmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/debugmessage.cpp -------------------------------------------------------------------------------- /11/ASIO/common/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/dllentry.cpp -------------------------------------------------------------------------------- /11/ASIO/common/iasiodrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/iasiodrv.h -------------------------------------------------------------------------------- /11/ASIO/common/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/register.cpp -------------------------------------------------------------------------------- /11/ASIO/common/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/ASIO/common/wxdebug.h -------------------------------------------------------------------------------- /11/AsioSimTool/AsioSimTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/AsioSimTool.cpp -------------------------------------------------------------------------------- /11/AsioSimTool/AsioSimTool.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/AsioSimTool.vcproj -------------------------------------------------------------------------------- /11/AsioSimTool/PlayMusicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/PlayMusicFile.cpp -------------------------------------------------------------------------------- /11/AsioSimTool/PlayMusicFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/PlayMusicFile.h -------------------------------------------------------------------------------- /11/AsioSimTool/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/ReadMe.txt -------------------------------------------------------------------------------- /11/AsioSimTool/asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/asio.h -------------------------------------------------------------------------------- /11/AsioSimTool/asiolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/asiolist.cpp -------------------------------------------------------------------------------- /11/AsioSimTool/asiolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/asiolist.h -------------------------------------------------------------------------------- /11/AsioSimTool/asiotool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/asiotool.h -------------------------------------------------------------------------------- /11/AsioSimTool/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/command.cpp -------------------------------------------------------------------------------- /11/AsioSimTool/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/command.h -------------------------------------------------------------------------------- /11/AsioSimTool/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/stdafx.cpp -------------------------------------------------------------------------------- /11/AsioSimTool/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/AsioSimTool/stdafx.h -------------------------------------------------------------------------------- /11/Bin/V-ASIO.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Bin/V-ASIO.inf -------------------------------------------------------------------------------- /11/Bin/i386/V-ASIO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Bin/i386/V-ASIO.pdb -------------------------------------------------------------------------------- /11/Bin/i386/V-ASIO.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Bin/i386/V-ASIO.sys -------------------------------------------------------------------------------- /11/Kernel/Source/ASIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/ASIO.c -------------------------------------------------------------------------------- /11/Kernel/Source/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/MAKEFILE -------------------------------------------------------------------------------- /11/Kernel/Source/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/Main.c -------------------------------------------------------------------------------- /11/Kernel/Source/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/Main.h -------------------------------------------------------------------------------- /11/Kernel/Source/objfre_win7_x86/i386/asio.obj.oacr.root.x86fre.pft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/objfre_win7_x86/i386/asio.obj.oacr.root.x86fre.pft.xml -------------------------------------------------------------------------------- /11/Kernel/Source/objfre_win7_x86/i386/main.obj.oacr.root.x86fre.pft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/objfre_win7_x86/i386/main.obj.oacr.root.x86fre.pft.xml -------------------------------------------------------------------------------- /11/Kernel/Source/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/public.h -------------------------------------------------------------------------------- /11/Kernel/Source/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/Source/sources -------------------------------------------------------------------------------- /11/Kernel/V-ASIO.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/Kernel/V-ASIO.vcproj -------------------------------------------------------------------------------- /11/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/install.bat -------------------------------------------------------------------------------- /11/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/uninstall.bat -------------------------------------------------------------------------------- /11/关于.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/11/关于.docx -------------------------------------------------------------------------------- /13/Inf/AddReg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/AddReg.inf -------------------------------------------------------------------------------- /13/Inf/CopyFiles.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/CopyFiles.inf -------------------------------------------------------------------------------- /13/Inf/DelFiles.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/DelFiles.inf -------------------------------------------------------------------------------- /13/Inf/DelReg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/DelReg.inf -------------------------------------------------------------------------------- /13/Inf/ProfileItems.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/ProfileItems.inf -------------------------------------------------------------------------------- /13/Inf/RenFiles.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/RenFiles.inf -------------------------------------------------------------------------------- /13/Inf/Services.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/Services.inf -------------------------------------------------------------------------------- /13/Inf/Services_DEL.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/Services_DEL.inf -------------------------------------------------------------------------------- /13/Inf/ini.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/Inf/ini.inf -------------------------------------------------------------------------------- /13/Inf/test.txt: -------------------------------------------------------------------------------- 1 | For test -------------------------------------------------------------------------------- /13/InfRun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/13/InfRun.exe -------------------------------------------------------------------------------- /14/DrvInst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst.exe -------------------------------------------------------------------------------- /14/DrvInst/DrvDeletePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvDeletePage.cpp -------------------------------------------------------------------------------- /14/DrvInst/DrvDeletePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvDeletePage.h -------------------------------------------------------------------------------- /14/DrvInst/DrvInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInst.cpp -------------------------------------------------------------------------------- /14/DrvInst/DrvInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInst.h -------------------------------------------------------------------------------- /14/DrvInst/DrvInst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInst.rc -------------------------------------------------------------------------------- /14/DrvInst/DrvInst.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInst.vcproj -------------------------------------------------------------------------------- /14/DrvInst/DrvInstPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInstPage.cpp -------------------------------------------------------------------------------- /14/DrvInst/DrvInstPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInstPage.h -------------------------------------------------------------------------------- /14/DrvInst/DrvInstSheetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInstSheetEx.cpp -------------------------------------------------------------------------------- /14/DrvInst/DrvInstSheetEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/DrvInstSheetEx.h -------------------------------------------------------------------------------- /14/DrvInst/FinishPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/FinishPage.cpp -------------------------------------------------------------------------------- /14/DrvInst/FinishPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/FinishPage.h -------------------------------------------------------------------------------- /14/DrvInst/HIDPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/HIDPage.cpp -------------------------------------------------------------------------------- /14/DrvInst/HIDPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/HIDPage.h -------------------------------------------------------------------------------- /14/DrvInst/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/ReadMe.txt -------------------------------------------------------------------------------- /14/DrvInst/StartPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/StartPage.cpp -------------------------------------------------------------------------------- /14/DrvInst/StartPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/StartPage.h -------------------------------------------------------------------------------- /14/DrvInst/XHyperLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/XHyperLink.cpp -------------------------------------------------------------------------------- /14/DrvInst/XHyperLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/XHyperLink.h -------------------------------------------------------------------------------- /14/DrvInst/res/DrvInst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/DrvInst.ico -------------------------------------------------------------------------------- /14/DrvInst/res/DrvInst.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/DrvInst.rc2 -------------------------------------------------------------------------------- /14/DrvInst/res/ICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/ICON.ico -------------------------------------------------------------------------------- /14/DrvInst/res/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/background.bmp -------------------------------------------------------------------------------- /14/DrvInst/res/baner16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/baner16.bmp -------------------------------------------------------------------------------- /14/DrvInst/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/header.bmp -------------------------------------------------------------------------------- /14/DrvInst/res/water16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/res/water16.bmp -------------------------------------------------------------------------------- /14/DrvInst/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/resource.h -------------------------------------------------------------------------------- /14/DrvInst/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/setup.cpp -------------------------------------------------------------------------------- /14/DrvInst/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/setup.h -------------------------------------------------------------------------------- /14/DrvInst/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/stdafx.cpp -------------------------------------------------------------------------------- /14/DrvInst/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/stdafx.h -------------------------------------------------------------------------------- /14/DrvInst/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/14/DrvInst/targetver.h -------------------------------------------------------------------------------- /my_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/my_build.bat -------------------------------------------------------------------------------- /my_clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/my_clean.bat -------------------------------------------------------------------------------- /读我.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztony478/Win_Dev_Driver_Code/HEAD/读我.doc --------------------------------------------------------------------------------