mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[RTL]
- Limit unimplemented warnings about RtlActivateActivationContextUnsafeFast calls for now so that they don't flood the log too much. svn path=/trunk/; revision=51083
This commit is contained in:
@@ -2735,7 +2735,12 @@ NTAPI
|
||||
RtlActivateActivationContextUnsafeFast(IN PRTL_CALLER_ALLOCATED_ACTIVATION_CONTEXT_STACK_FRAME_EXTENDED Frame,
|
||||
IN PVOID Context)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
static int i;
|
||||
|
||||
if (i == 0)
|
||||
UNIMPLEMENTED;
|
||||
i++;
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
@@ -2743,7 +2748,12 @@ NTSTATUS
|
||||
NTAPI
|
||||
RtlDeactivateActivationContextUnsafeFast(IN PRTL_CALLER_ALLOCATED_ACTIVATION_CONTEXT_STACK_FRAME_EXTENDED Frame)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
static int i;
|
||||
|
||||
if (i == 0)
|
||||
UNIMPLEMENTED;
|
||||
i++;
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user