[NTDLL_APITEST] Add minimal test for RTL_DEBUG_INFORMATION allocation

This commit is contained in:
Mark Jansen 2020-04-16 19:58:07 +02:00
parent 234dfd4f2e
commit 808aea9b72
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
3 changed files with 91 additions and 0 deletions

View file

@ -41,6 +41,7 @@ extern void func_RtlAllocateHeap(void);
extern void func_RtlBitmap(void);
extern void func_RtlComputePrivatizedDllName_U(void);
extern void func_RtlCopyMappedMemory(void);
extern void func_RtlDebugInformation(void);
extern void func_RtlDeleteAce(void);
extern void func_RtlDetermineDosPathNameType(void);
extern void func_RtlDosApplyFileIsolationRedirection_Ustr(void);
@ -111,6 +112,7 @@ const struct test winetest_testlist[] =
{ "RtlBitmapApi", func_RtlBitmap },
{ "RtlComputePrivatizedDllName_U", func_RtlComputePrivatizedDllName_U },
{ "RtlCopyMappedMemory", func_RtlCopyMappedMemory },
{ "RtlDebugInformation", func_RtlDebugInformation },
{ "RtlDeleteAce", func_RtlDeleteAce },
{ "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
{ "RtlDosApplyFileIsolationRedirection_Ustr", func_RtlDosApplyFileIsolationRedirection_Ustr },