#ifndef _NTIOAPI_H
typedef struct _FILE_FS_LABEL_INFORMATION
{
ULONG VolumeLabelLength;
_Field_size_bytes_(VolumeLabelLength) WCHAR VolumeLabel[1];
} FILE_FS_LABEL_INFORMATION, *PFILE_FS_LABEL_INFORMATION;
View code on GitHubThis structure is documented in Windows Driver Kit.
Structure is an input buffer for NtSetVolumeInformationFile call with information class FileFsLabelInformation.
Length of VolumeLabel array, in bytes.
Label for specified volume.