Create a branch for header work.

svn path=/branches/header-work/; revision=45691
This commit is contained in:
Timo Kreuzer 2010-02-26 22:57:55 +00:00
parent 14fe274b1c
commit 9ea495ba33
19538 changed files with 0 additions and 1063950 deletions

48
lib/rossym/initkm.c Normal file
View file

@ -0,0 +1,48 @@
/*
* 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,
RosSymZwReadFile,
RosSymZwSeekFile
};
RosSymInit(&KmCallbacks);
}
/* EOF */