代码搜索结果

找到约 10,000 项符合 Driver 的代码

driver.h

// Driver.h - Chapter 6 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" typedef struct _DEVICE_EXTENSION { PDEVICE_OBJE

driver.cpp

// // Driver.c - Chapter 6 - Minimal Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // static NTSTATUS CreateDevice ( IN PDRIVER_OBJECT p

driver.h

// Driver.h - Chapter 12 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" enum DRIVER_STATE {Stopped, Started, Removed};

driver.cpp

// // Driver.c - Chapter 12 - DMA Slave Packet Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // NTSTATUS AddDevice ( IN PDRIVER_OBJECT

driver.h

// Driver.h - Chapter 9 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" enum DRIVER_STATE {Stopped, Started, Removed}; t

driver.cpp

// // Driver.c - Chapter 9 - Minimal PnP Parallel Port Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // NTSTATUS AddDevice ( IN PDRIVER

driver.h

// Driver.h - Chapter 11 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" enum DRIVER_STATE {Stopped, Started, Removed};

driver.cpp

// // Driver.c - Chapter 11 - Timer-based Parallel Port Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // NTSTATUS AddDevice ( IN PDRIVE

driver.h

// Driver.h - Chapter 6 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" typedef struct _DEVICE_EXTENSION { PDEVICE_OBJE

driver.cpp

// // Driver.c - Chapter 8 - Parallel Port Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // static NTSTATUS CreateDevice ( IN PDRIVER_OB