ReactOS
0.4.15-dev-6073-g59e7458
NtSetInformationFile.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Kernel
3
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4
* PURPOSE: Test for NtSetInformationFile
5
* COPYRIGHT: Copyright 2019 Thomas Faber (thomas.faber@reactos.org)
6
*/
7
8
#include "
precomp.h
"
9
10
START_TEST
(
NtSetInformationFile
)
11
{
12
NTSTATUS
Status
;
13
14
Status
=
NtSetInformationFile
(
NULL
,
NULL
,
NULL
, 0, 0);
15
ok
(
Status
==
STATUS_INVALID_INFO_CLASS
,
"Status = %lx\n"
,
Status
);
16
17
Status
=
NtSetInformationFile
(
NULL
,
NULL
,
NULL
, 0, 0x80000000);
18
ok
(
Status
==
STATUS_INVALID_INFO_CLASS
,
"Status = %lx\n"
,
Status
);
19
}
ok
#define ok(value,...)
Definition:
atltest.h:57
START_TEST
#define START_TEST(x)
Definition:
atltest.h:75
NTSTATUS
LONG NTSTATUS
Definition:
precomp.h:26
NULL
#define NULL
Definition:
types.h:112
Status
Status
Definition:
gdiplustypes.h:25
NtSetInformationFile
NTSYSAPI NTSTATUS NTAPI NtSetInformationFile(IN HANDLE hFile, OUT PIO_STATUS_BLOCK pIoStatusBlock, IN PVOID FileInformationBuffer, IN ULONG FileInformationBufferLength, IN FILE_INFORMATION_CLASS FileInfoClass)
Definition:
iofunc.c:3096
STATUS_INVALID_INFO_CLASS
#define STATUS_INVALID_INFO_CLASS
Definition:
ntstatus.h:240
precomp.h
modules
rostests
apitests
ntdll
NtSetInformationFile.c
Generated on Sat Jun 10 2023 06:06:37 for ReactOS by
1.9.6