mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
19 lines
611 B
C
19 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);
|
|
}
|