- Add 0x96 as ISO9660 partition type to ntdddisk.h (from https://en.wikipedia.org...
[reactos.git] / reactos / sdk / include / psdk / ntdddisk.h
index f1ddb30..66da363 100644 (file)
@@ -223,6 +223,7 @@ extern "C" {
 #ifdef __REACTOS__
 #define PARTITION_OLD_LINUX               0x43
 #define PARTITION_LINUX                   0x83
+#define PARTITION_ISO9660                 0x96
 #define PARTITION_FREEBSD                 0xA5
 #define PARTITION_OPENBSD                 0xA6
 #define PARTITION_NETBSD                  0xA9
@@ -253,6 +254,7 @@ extern "C" {
        ((PartitionType) == PARTITION_XINT13) || \
        ((PartitionType) == PARTITION_LINUX) || \
        ((PartitionType) == PARTITION_OLD_LINUX) || \
+    ((PartitionType) == PARTITION_ISO9660) || \
        ((PartitionType) == PARTITION_FREEBSD) || \
        ((PartitionType) == PARTITION_OPENBSD) || \
        ((PartitionType) == PARTITION_NETBSD))