mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
18 lines
395 B
C
18 lines
395 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Test for x86 RtlCaptureContext
|
|
* COPYRIGHT: Copyright 2022 Timo Kreuzer <timo.kreuzer@reactos.org>
|
|
*/
|
|
|
|
#include <rtltests.h>
|
|
|
|
VOID
|
|
RtlCaptureContextWrapper(
|
|
_Inout_ PCONTEXT InOutContext,
|
|
_Out_ PCONTEXT CapturedContext);
|
|
|
|
START_TEST(RtlCaptureContext)
|
|
{
|
|
// TODO
|
|
}
|