diff --git a/reactos/dll/ntdll/def/ntdll.spec b/reactos/dll/ntdll/def/ntdll.spec index dd3a123ff75..a70f9f26fdd 100644 --- a/reactos/dll/ntdll/def/ntdll.spec +++ b/reactos/dll/ntdll/def/ntdll.spec @@ -467,7 +467,7 @@ @ stdcall RtlAppendStringToString(ptr ptr) @ stdcall RtlAppendUnicodeStringToString(ptr ptr) @ stdcall RtlAppendUnicodeToString(ptr wstr) -;@ stdcall RtlApplicationVerifierStop +@ stdcall RtlApplicationVerifierStop(ptr str ptr str ptr str ptr str ptr str) @ stdcall RtlApplyRXact(ptr) @ stdcall RtlApplyRXactNoFlush(ptr) @ stdcall RtlAreAllAccessesGranted(long long) @@ -506,7 +506,7 @@ @ stdcall -arch=win32 -ret64 RtlConvertUlongToLargeInteger(long) @ stdcall RtlCopyLuid(ptr ptr) @ stdcall RtlCopyLuidAndAttributesArray(long ptr ptr) -;@ stdcall RtlCopyMappedMemory +@ stdcall RtlCopyMappedMemory(ptr ptr long) @ stdcall RtlCopyMemoryStreamTo(ptr ptr int64 ptr ptr) @ stdcall RtlCopyOutOfProcessMemoryStreamTo(ptr ptr int64 ptr ptr) RtlCopyMemoryStreamTo @ stdcall RtlCopySecurityDescriptor(ptr ptr) diff --git a/reactos/lib/rtl/CMakeLists.txt b/reactos/lib/rtl/CMakeLists.txt index ac424b3d67e..20967820135 100644 --- a/reactos/lib/rtl/CMakeLists.txt +++ b/reactos/lib/rtl/CMakeLists.txt @@ -9,6 +9,7 @@ list(APPEND SOURCE access.c acl.c actctx.c + appverifier.c assert.c atom.c avltable.c diff --git a/reactos/lib/rtl/appverifier.c b/reactos/lib/rtl/appverifier.c new file mode 100644 index 00000000000..9e0ac6fee7c --- /dev/null +++ b/reactos/lib/rtl/appverifier.c @@ -0,0 +1,46 @@ +/* + * PROJECT: ReactOS Runtime Library + * LICENSE: BSD - See COPYING.ARM in the top level directory + * FILE: lib/rtl/appverifier.c + * PURPOSE: RTL Application Verifier Routines + * PROGRAMMERS: Thomas Faber + */ + +/* INCLUDES *****************************************************************/ + +#include + +#define NDEBUG +#include + +/* FUNCTIONS ***************************************************************/ + +/* + * @implemented + */ +VOID +NTAPI +RtlApplicationVerifierStop( + _In_ ULONG_PTR Code, + _In_ PCSTR Message, + _In_ PVOID Value1, + _In_ PCSTR Description1, + _In_ PVOID Value2, + _In_ PCSTR Description2, + _In_ PVOID Value3, + _In_ PCSTR Description3, + _In_ PVOID Value4, + _In_ PCSTR Description4) +{ + PTEB Teb = NtCurrentTeb(); + + DbgPrint("**************************************************\n"); + DbgPrint("VERIFIER STOP %08Ix: pid %04Ix: %s\n", + Code, (ULONG_PTR)Teb->ClientId.UniqueProcess, Message); + DbgPrint(" %p : %s\n", Value1, Description1); + DbgPrint(" %p : %s\n", Value2, Description2); + DbgPrint(" %p : %s\n", Value3, Description3); + DbgPrint(" %p : %s\n", Value4, Description4); + DbgPrint("**************************************************\n"); + DbgBreakPoint(); +} diff --git a/reactos/lib/rtl/memstream.c b/reactos/lib/rtl/memstream.c index 7fbd93fadae..158640bea24 100644 --- a/reactos/lib/rtl/memstream.c +++ b/reactos/lib/rtl/memstream.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries - * FILE: lib/rtl/mem.c + * FILE: lib/rtl/memstream.c * PURPOSE: MemoryStream functions * PROGRAMMER: David Quintana (gigaherz@gmail.com) */ @@ -465,3 +465,17 @@ RtlCloneMemoryStream( return E_NOTIMPL; } + +/* + * @implemented + */ +VOID +NTAPI +RtlCopyMappedMemory( + _Out_ PVOID Destination, + _In_ const VOID *Source, + _In_ SIZE_T Size) +{ + /* FIXME: This is supposed to handle STATUS_IN_PAGE_ERROR exceptions */ + RtlCopyMemory(Destination, Source, Size); +}