Files
Timo Kreuzer 5e428f34df [RTL_UNITTEST] Add RtlpInitialize
This will be compiled as a dummy in the test library, but in the unit test it will actually initialize the required RTL things.
For now it is only RtlpInitializeVectoredExceptionHandling.
This prevents a problem with the RtlVirtualUnwind test.
2026-07-07 11:32:46 +00:00

20 lines
405 B
C

/*
* PROJECT: ReactOS api tests
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: Initialization for RTL unit test
* COPYRIGHT: Copyright 2026 Timo Kreuzer <[email protected]>
*/
#include <rtltests.h>
VOID NTAPI RtlpInitializeVectoredExceptionHandling(VOID);
VOID
NTAPI
RtlpInitialize(VOID)
{
#ifdef TEST_STATIC
RtlpInitializeVectoredExceptionHandling();
#endif
}