Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

47
sdk/lib/rtl/prefix.c Normal file
View 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;
}