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.
17 lines
205 B
C
17 lines
205 B
C
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <apitest.h>
|
|
#include <ndk/ntndk.h>
|
|
#include <strsafe.h>
|
|
|
|
VOID
|
|
NTAPI
|
|
RtlpInitialize(VOID);
|