reactos/lib/rossym/initkm.c
Amine Khaldi c3d35eaa65 [CMAKE]
* The cmake branch is so awesome you don't even need to manually translate addresses. Automagic usermode address translation brought to you by the Arty.

svn path=/branches/cmake-bringup/; revision=51404
2011-04-19 18:13:10 +00:00

49 lines
863 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 (gvg@reactos.com)
*/
#include <ntdef.h>
#undef DECLSPEC_IMPORT
#define DECLSPEC_IMPORT
#include <ntddk.h>
#include <reactos/rossym.h>
#include "rossympriv.h"
#define NDEBUG
#include <debug.h>
#define TAG_ROSSYM 'MYSR'
static PVOID
RosSymAllocMemKM(ULONG_PTR Size)
{
return ExAllocatePoolWithTag(NonPagedPool, Size, TAG_ROSSYM);
}
static VOID
RosSymFreeMemKM(PVOID Area)
{
ExFreePool(Area);
}
VOID
RosSymInitKernelMode(VOID)
{
static ROSSYM_CALLBACKS KmCallbacks =
{
RosSymAllocMemKM,
RosSymFreeMemKM,
RosSymIoReadFile,
RosSymIoSeekFile
};
RosSymInit(&KmCallbacks);
}
/* EOF */