mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
802e11b708
Add tests for NtQuery/SetSystemInformation svn path=/trunk/; revision=54079
22 lines
554 B
C
22 lines
554 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_RtlInitializeBitMap(void);
|
|
extern void func_ZwContinue(void);
|
|
extern void func_NtFreeVirtualMemory(void);
|
|
extern void func_NtSystemInformation(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "RtlInitializeBitMap", func_RtlInitializeBitMap },
|
|
{ "ZwContinue", func_ZwContinue },
|
|
{ "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
|
|
{ "NtSystemInformation", func_NtSystemInformation },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|