ReactOS 0.4.15-dev-7834-g00c4b3d
prefix.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Run-Time Library
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * PURPOSE: Rtl Prefix Routines
5 */
6
7/* INCLUDES *******************************************************************/
8
9#include <rtl.h>
10#define NDEBUG
11#include <debug.h>
12
13/* FUNCTIONS ******************************************************************/
14
15VOID
18{
20}
21
27{
29 return FALSE;
30}
31
32VOID
36{
38}
39
44{
46 return FALSE;
47}
unsigned char BOOLEAN
#define UNIMPLEMENTED
Definition: debug.h:115
#define FALSE
Definition: types.h:117
VOID NTAPI PfxInitialize(IN PPREFIX_TABLE PrefixTable)
Definition: prefix.c:17
PPREFIX_TABLE_ENTRY NTAPI PfxFindPrefix(IN PPREFIX_TABLE PrefixTable, IN PSTRING FullName)
Definition: prefix.c:42
VOID NTAPI PfxRemovePrefix(IN PPREFIX_TABLE PrefixTable, IN PPREFIX_TABLE_ENTRY PrefixTableEntry)
Definition: prefix.c:34
BOOLEAN NTAPI PfxInsertPrefix(IN PPREFIX_TABLE PrefixTable, IN PSTRING Prefix, IN PPREFIX_TABLE_ENTRY PrefixTableEntry)
Definition: prefix.c:24
Definition: rtltypes.h:613
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39
_In_ PSTRING FullName
Definition: rtlfuncs.h:1648
_In_ __drv_aliasesMem PSTRING Prefix
Definition: rtlfuncs.h:1630
_In_ __drv_aliasesMem PSTRING _Out_ PPREFIX_TABLE_ENTRY PrefixTableEntry
Definition: rtlfuncs.h:1631