Skip to content

Instantly share code, notes, and snippets.

@azhlm
Created February 6, 2025 08:10
Show Gist options
  • Save azhlm/a2bd388201f23f27829e6cfaf8939252 to your computer and use it in GitHub Desktop.
Save azhlm/a2bd388201f23f27829e6cfaf8939252 to your computer and use it in GitHub Desktop.
Enum for GetDriveTypeW
enum drive_type : uint32_t
{
DRIVE_UNKNOWN = 0x0,
DRIVE_NO_ROOT_DIR = 0x1,
DRIVE_REMOVABLE = 0x2,
DRIVE_FIXED = 0x3,
DRIVE_REMOTE = 0x4,
DRIVE_CDROM = 0x5,
DRIVE_RAMDISK = 0x6
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment