mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:36:11 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
47
sdk/lib/rtl/prefix.c
Normal file
47
sdk/lib/rtl/prefix.c
Normal file
|
@ -0,0 +1,47 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Run-Time Library
|
||||
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
||||
* PURPOSE: Rtl Prefix Routines
|
||||
*/
|
||||
|
||||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#include <rtl.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* FUNCTIONS ******************************************************************/
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
PfxInitialize(IN PPREFIX_TABLE PrefixTable)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
PfxInsertPrefix(IN PPREFIX_TABLE PrefixTable,
|
||||
IN PSTRING Prefix,
|
||||
IN PPREFIX_TABLE_ENTRY PrefixTableEntry)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
PfxRemovePrefix(IN PPREFIX_TABLE PrefixTable,
|
||||
IN PPREFIX_TABLE_ENTRY PrefixTableEntry)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
PPREFIX_TABLE_ENTRY
|
||||
NTAPI
|
||||
PfxFindPrefix(IN PPREFIX_TABLE PrefixTable,
|
||||
IN PSTRING FullName)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue