Created
February 6, 2025 08:10
-
-
Save azhlm/a2bd388201f23f27829e6cfaf8939252 to your computer and use it in GitHub Desktop.
Enum for GetDriveTypeW
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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