More runtime functions

svn path=/trunk/; revision=798
This commit is contained in:
Eric Kohl 1999-11-25 23:45:30 +00:00
parent e77c8000db
commit ed3ca3d52c
4 changed files with 52 additions and 7 deletions

View file

@ -1,4 +1,4 @@
; $Id: ntdll.def,v 1.23 1999/11/20 21:46:16 ekohl Exp $
; $Id: ntdll.def,v 1.24 1999/11/25 23:45:29 ekohl Exp $
;
; ReactOS Operating System
;
@ -510,6 +510,10 @@ RtlUpperChar@4
RtlUpperString@8
RtlValidateHeap@12
RtlZeroMemory@8
RtlxAnsiStringToUnicodeSize@4
RtlxOemStringToUnicodeSize@4
RtlxUnicodeStringToAnsiSize@4
RtlxUnicodeStringToOemSize@4
_memccpy
_memicmp
_splitpath

View file

@ -1,4 +1,4 @@
; $Id: ntdll.edf,v 1.13 1999/11/25 10:47:55 dwelch Exp $
; $Id: ntdll.edf,v 1.14 1999/11/25 23:45:30 ekohl Exp $
;
; ReactOS Operating System
;
@ -501,6 +501,10 @@ RtlUpperChar=RtlUpperChar@4
RtlUpperString=RtlUpperString@8
RtlValidateHeap=RtlValidateHeap@12
RtlZeroMemory=RtlZeroMemory@8
RtlxAnsiStringToUnicodeSize=RtlxAnsiStringToUnicodeSize@4
RtlxOemStringToUnicodeSize=RtlxOemStringToUnicodeSize@4
RtlxUnicodeStringToAnsiSize=RtlxUnicodeStringToAnsiSize@4
RtlxUnicodeStringToOemSize=RtlxUnicodeStringToOemSize@4
_memccpy
_memicmp
_splitpath

View file

@ -1,4 +1,4 @@
/* $Id: unicode.c,v 1.9 1999/11/20 21:46:46 ekohl Exp $
/* $Id: unicode.c,v 1.10 1999/11/25 23:43:44 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -1378,6 +1378,47 @@ RtlUpperString (
}
ULONG
STDCALL
RtlxAnsiStringToUnicodeSize (
IN PANSI_STRING AnsiString
)
{
return RtlAnsiStringToUnicodeSize (AnsiString);
}
ULONG
STDCALL
RtlxOemStringToUnicodeSize (
IN POEM_STRING OemString
)
{
return RtlAnsiStringToUnicodeSize ((PANSI_STRING)OemString);
}
ULONG
STDCALL
RtlxUnicodeStringToAnsiSize (
IN PUNICODE_STRING UnicodeString
)
{
return RtlUnicodeStringToAnsiSize (UnicodeString);
}
ULONG
STDCALL
RtlxUnicodeStringToOemSize (
IN PUNICODE_STRING UnicodeString
)
{
return RtlUnicodeStringToAnsiSize (UnicodeString);
}
/* This one doesn't belong here! */
VOID
STDCALL
RtlUnwind (

View file

@ -70,10 +70,6 @@ STUB(RtlpNtQueryValueKey)
STUB(RtlpNtSetValueKey)
STUB(RtlpUnWaitCriticalSection)
STUB(RtlpWaitForCriticalSection)
STUB(RtlxAnsiStringToUnicodeSize)
STUB(RtlxOemStringToUnicodeSize)
STUB(RtlxUnicodeStringToAnsiSize)
STUB(RtlxUnicodeStringToOemSize)
STUB(SaveEm87Context)
STUB(_CIpow)
STUB(__eCommonExceptions)