1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS PSDK extensions 4 * FILE: include/reactos/rosioctl.h 5 * PURPOSE: Additional partition types 6 * (partition types not covered by winioctl.h of PSDK) 7 * 8 * PROGRAMMERS: Matthias Kupfer (mkupfer@reactos.com) 9 */ 10 11 #ifndef __ROSIOCTL_H 12 #define __ROSIOCTL_H 13 14 #define PARTITION_OS2BOOTMGR 0x0A // OS/2 Boot Manager/OPUS/Coherent swap 15 #define PARTITION_LINUX_SWAP 0x82 // Linux Swap Partition 16 #define PARTITION_LINUX 0x83 // Linux Partition Ext2/Ext3/Ext4 17 #define PARTITION_LINUX_EXT 0x85 // Linux Extended Partition 18 #define PARTITION_LINUX_LVM 0x8E 19 20 #endif /* __ROSIOCTL_H */ 21 22 /* EOF */ 23 24