mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
47 lines
840 B
C
47 lines
840 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: lib/rossym/initkm.c
|
|
* PURPOSE: Initialize library for use in kernel mode
|
|
*
|
|
* PROGRAMMERS: Ge van Geldorp ([email protected])
|
|
*/
|
|
|
|
#define NTOSAPI
|
|
#include <roskrnl.h>
|
|
#include <reactos/rossym.h>
|
|
#include "rossympriv.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
#define TAG_ROSSYM TAG('R', 'S', 'Y', 'M')
|
|
|
|
static PVOID
|
|
RosSymAllocMemKM(ULONG_PTR Size)
|
|
{
|
|
return ExAllocatePoolWithTag(NonPagedPool, Size, TAG_ROSSYM);
|
|
}
|
|
|
|
static VOID
|
|
RosSymFreeMemKM(PVOID Area)
|
|
{
|
|
return ExFreePool(Area);
|
|
}
|
|
|
|
VOID
|
|
RosSymInitKernelMode(VOID)
|
|
{
|
|
static ROSSYM_CALLBACKS KmCallbacks =
|
|
{
|
|
RosSymAllocMemKM,
|
|
RosSymFreeMemKM,
|
|
RosSymZwReadFile,
|
|
RosSymZwSeekFile
|
|
};
|
|
|
|
RosSymInit(&KmCallbacks);
|
|
}
|
|
|
|
/* EOF */
|