mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 19:25:36 +00:00
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.
20 lines
405 B
C
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
|
|
}
|