kmem.h

来自「Introduction to the Transport Device Int」· C头文件 代码 · 共 24 行

H
24
字号
/**********************************************************************
 * 
 *  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



⌨️ 快捷键说明

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