mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
added ext partition check macro
svn path=/trunk/; revision=105
This commit is contained in:
parent
98d405409a
commit
b6187e2de7
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ typedef enum PartitionTypes {
|
|||
(P)->PartitionType == PTWin95FAT16LBA || \
|
||||
(P)->PartitionType == PTLinuxExt2)
|
||||
|
||||
#define PartitionIsExtended(P) \
|
||||
((P)->PartitionType == PTDosExtended)
|
||||
|
||||
typedef struct Partition {
|
||||
__u8 BootFlags;
|
||||
__u8 StartingHead;
|
||||
|
|
Loading…
Reference in a new issue