⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 driver.h

📁 dma驱动开发程序
💻 H
字号:
/*++

Copyright (c) 1997-1998  Microsoft Corporation

Module Name:

    driver.h

Abstract:

    General header file for debug print routine.  Change the driver name to customize
    the DebugPrint() routine.

Author:

    Steve Dziok (SteveDz)

Environment:

    Kernel mode

Revision History:


--*/

#pragma message(" ")
#pragma message("*********************************************************************** ")
#pragma message("*                                                                     * ")
#pragma message("*  DRIVER.H:                                                          * ")
#pragma message("*                                                                     * ")
#pragma message("*  Change DRIVER_NAME to customize the DbgPrint routine.              * ")
#pragma message("*                                                                     * ")
#pragma message("*********************************************************************** ")
#pragma message(" ")

//
// Define the driver name.  Use no spaces or "special" characters.
//

//
// In this sample, the driver name is also used to help build the DOS device 
// name, the NT device name, and the class name for storing resources.
//

#define DRIVER_NAME     "PciDma"


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -