mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix some Rtl Prototype inconsistencies, more are in ntifs/winddk but i have fixed those in my header branch for when ntoskrnl will use them.
svn path=/trunk/; revision=12671
This commit is contained in:
parent
1464aa0ecb
commit
9311f8ddc4
2 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: rtl.h,v 1.41 2004/12/30 18:30:03 ion Exp $
|
||||
/* $Id$
|
||||
*
|
||||
*/
|
||||
#ifndef __DDK_RTL_H
|
||||
|
@ -381,7 +381,7 @@ NTSTATUS
|
|||
STDCALL
|
||||
RtlAppendUnicodeToString (
|
||||
PUNICODE_STRING Destination,
|
||||
PWSTR Source
|
||||
PCWSTR Source
|
||||
);
|
||||
|
||||
SIZE_T STDCALL
|
||||
|
@ -861,7 +861,7 @@ RtlCreateSystemVolumeInformationFolder(
|
|||
|
||||
BOOLEAN STDCALL
|
||||
RtlCreateUnicodeString (OUT PUNICODE_STRING Destination,
|
||||
IN PWSTR Source);
|
||||
IN PCWSTR Source);
|
||||
|
||||
BOOLEAN STDCALL
|
||||
RtlCreateUnicodeStringFromAsciiz (OUT PUNICODE_STRING Destination,
|
||||
|
@ -2791,7 +2791,7 @@ BOOLEAN
|
|||
FASTCALL
|
||||
RtlpCreateUnicodeString(
|
||||
IN OUT PUNICODE_STRING UniDest,
|
||||
IN PWSTR Source,
|
||||
IN PCWSTR Source,
|
||||
IN POOL_TYPE PoolType);
|
||||
|
||||
NTSTATUS
|
||||
|
|
|
@ -2240,7 +2240,7 @@ BOOLEAN
|
|||
STDCALL
|
||||
RtlCreateUnicodeString(
|
||||
IN OUT PUNICODE_STRING UniDest,
|
||||
IN PWSTR Source)
|
||||
IN PCWSTR Source)
|
||||
{
|
||||
|
||||
DPRINT("RtlCreateUnicodeString\n");
|
||||
|
@ -2255,7 +2255,7 @@ BOOLEAN
|
|||
FASTCALL
|
||||
RtlpCreateUnicodeString(
|
||||
IN OUT PUNICODE_STRING UniDest,
|
||||
IN PWSTR Source,
|
||||
IN PCWSTR Source,
|
||||
IN POOL_TYPE PoolType)
|
||||
{
|
||||
ULONG Length;
|
||||
|
@ -2392,7 +2392,7 @@ RtlpDowncaseUnicodeString(
|
|||
*/
|
||||
NTSTATUS STDCALL
|
||||
RtlAppendUnicodeToString(IN OUT PUNICODE_STRING Destination,
|
||||
IN PWSTR Source)
|
||||
IN PCWSTR Source)
|
||||
{
|
||||
ULONG slen;
|
||||
|
||||
|
|
Loading…
Reference in a new issue