mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
20 lines
611 B
C
20 lines
611 B
C
|
/*
|
||
|
* PROJECT: ReactOS Kernel
|
||
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
||
|
* PURPOSE: Test for NtSetVolumeInformationFile
|
||
|
* COPYRIGHT: Copyright 2019 Thomas Faber (thomas.faber@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#include "precomp.h"
|
||
|
|
||
|
START_TEST(NtSetVolumeInformationFile)
|
||
|
{
|
||
|
NTSTATUS Status;
|
||
|
|
||
|
Status = NtSetVolumeInformationFile(NULL, NULL, NULL, 0, 0);
|
||
|
ok(Status == STATUS_INVALID_INFO_CLASS, "Status = %lx\n", Status);
|
||
|
|
||
|
Status = NtSetVolumeInformationFile(NULL, NULL, NULL, 0, 0x80000000);
|
||
|
ok(Status == STATUS_INVALID_INFO_CLASS, "Status = %lx\n", Status);
|
||
|
}
|