PartitionTypeName.cs 197 B

1234567891011
  1. namespace DiskAccessLibrary
  2. {
  3. public enum PartitionTypeName : byte
  4. {
  5. Primary = 0x07,
  6. Extended = 0x05,
  7. DynamicData = 0x42,
  8. EFIGPT = 0xEE,
  9. }
  10. }