?? kmem.h
字號:
/**********************************************************************
*
* Toby Opferman
*
* Allocate Memory Thunk Library
*
* This example is for educational purposes only. I license this source
* out for use in learning how to write a device driver.
*
* Copyright (c) 2005, All Rights Reserved
**********************************************************************/
#ifndef __KMEM_H__
#define __KMEM_H__
PVOID KMem_AllocateNonPagedMemory(ULONG uiSize, ULONG ulPoolTag);
void KMem_FreeNonPagedMemory(PVOID pAllocatedMemory);
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -