代码搜索:driver development

找到约 10,000 项符合「driver development」的源代码

代码结果 10,000
www.eeworm.com/read/126323/14429572

cpp driver.cpp

// // Driver.c - Chapter 17 - Crasher Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" static ULONG CrashPoint; // Determines where the // driver will crash.
www.eeworm.com/read/126323/14429578

h driver.h

// Driver.h - Chapter 17 // // Copyright (C) 2000 by Jerry Lozano // #pragma once extern "C" { #include } #include "Unicode.h" enum DRIVER_STATE {Stopped, Started, Removed};
www.eeworm.com/read/126323/14429627

h driver.h

// File Name: // Driver.h // // Contents: // Constants, structures, and function // declarations specific to this driver. // #pragma once // // Header files // extern "C" { #include
www.eeworm.com/read/126323/14429663

cpp driver.cpp

// // Driver.c - Chapter 14 - Thread-based Parallel Port Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward declarations // NTSTATUS AddDevice ( IN PDRIV
www.eeworm.com/read/126323/14429677

h driver.h

// File Name: // Driver.h // // Contents: // Constants, structures, and function // declarations specific to this driver. // #pragma once // // Header files // extern "C" { #include
www.eeworm.com/read/126323/14429698

cpp driver.cpp

// // Driver.c - LoDriver Driver // Simplisitc driver example has an arbitrarily limited // maximum Write transfer size of 16 bytes. // Depends on higher filter driver, HIFILTER, to // eliminate
www.eeworm.com/read/126323/14429722

h driver.h

// File Name: // Driver.h // // Contents: // Constants, structures, and function // declarations specific to this driver. // #pragma once // // Header files // extern "C" { #include
www.eeworm.com/read/126323/14429737

cpp driver.cpp

// // Driver.c - HiFilter Driver // Modifies behavior of LODriver to allow for unlimited // Write transfer sizes. // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" // Forward
www.eeworm.com/read/125447/14493907

h driver.h

// driver.h -- Declarations for STUPID.SYS (DFW version) // Copyright (C) 2003 by Walter Oney // All rights reserved #pragma once #define DRIVERNAME "STUPID" //////////////////////
www.eeworm.com/read/125447/14493921

cpp driver.cpp

// Driver.cpp -- Driver object management for STUPID.SYS (DFW version) // Copyright (C) 2003 by Walter Oney // All rights reserved // STUPID.SYS is the simplest possible framework-based driver. I