📄 ddkoverload.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 + -