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

📄 ddkoverload.h

📁 一个主设备驱动程序绝对可用
💻 H
字号:
////////////////////////////////////////////////////////////////////
//     File:   DDKOverload.h
//
//     Purpose: This is the DDK specific header file for the cy09449,
//              WDM DDK kernel driver implimentation.
//
//     Copyright (c) 2002, SEED Enterprises, Inc.
////////////////////////////////////////////////////////////////////
#ifndef _DDKOVERLOAD_H_
#define _DDKOVERLOAD_H_

// Macros and defines
#define DEBUG
#define E_DEBUG

extern "C"
{
	#include <wdm.h>
PVOID 
MmAllocateContiguousMemory(
  IN ULONG NumberOfBytes,
  IN PHYSICAL_ADDRESS HighestAcceptableAddress
  );
PHYSICAL_ADDRESS
  MmGetPhysicalAddress(
  IN PVOID BaseAddress
  );
VOID 
  MmFreeContiguousMemory(
  IN PVOID BaseAddress
  );
}
#endif

⌨️ 快捷键说明

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