mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 21:06:17 +00:00
[APITEST][NTDLL] Initial implementation of NtSetInformationProcess() testcase
The following testcase only performs argument checks for ProcessForegroundInformation class for the moment. The testcase will be expanded with further tests when needed.
This commit is contained in:
parent
724466597f
commit
f70e43c8f3
3 changed files with 83 additions and 0 deletions
|
@ -31,6 +31,7 @@ extern void func_NtQueryVolumeInformationFile(void);
|
|||
extern void func_NtReadFile(void);
|
||||
extern void func_NtSaveKey(void);
|
||||
extern void func_NtSetInformationFile(void);
|
||||
extern void func_NtSetInformationProcess(void);
|
||||
extern void func_NtSetValueKey(void);
|
||||
extern void func_NtSetVolumeInformationFile(void);
|
||||
extern void func_NtSystemInformation(void);
|
||||
|
@ -98,6 +99,7 @@ const struct test winetest_testlist[] =
|
|||
{ "NtReadFile", func_NtReadFile },
|
||||
{ "NtSaveKey", func_NtSaveKey},
|
||||
{ "NtSetInformationFile", func_NtSetInformationFile },
|
||||
{ "NtSetInformationProcess", func_NtSetInformationProcess },
|
||||
{ "NtSetValueKey", func_NtSetValueKey},
|
||||
{ "NtSetVolumeInformationFile", func_NtSetVolumeInformationFile },
|
||||
{ "NtSystemInformation", func_NtSystemInformation },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue