#ifndef _NTIOAPI_H
/**
* The FILE_FS_GUID_INFORMATION structure is used to query the GUID for a file system volume.
*/
typedef struct _FILE_FS_GUID_INFORMATION
{
GUID FsGuid;
} FILE_FS_GUID_INFORMATION, *PFILE_FS_GUID_INFORMATION;
View code on GitHub// ntifs.h
typedef struct _FILE_FS_GUID_INFORMATION {
GUID FsGuid;
} FILE_FS_GUID_INFORMATION, *PFILE_FS_GUID_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The FILE_FS_GUID_INFORMATION structure contains GUID infomation.
FsGuidGUID that uniquely identifies the file system. This identifier can be used to distinguish between different file systems, even if they are of the same type, across various volumes or storage devices.