Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
968 B

  1. ;
  2. ; This structure is used internally to track partitions
  3. ; we've located when we examined all the disks we care about.
  4. ;
  5. PART_INFO STRUC
  6. ;
  7. ; For linked list. THIS MUST BE FIRST. LocatePartitionRecord
  8. ; depends on this being true.
  9. ;
  10. PartInfoNextl dw ?
  11. PartInfoNexth dw ?
  12. ;
  13. ; Ordinal used by clients to uniquely identify the partition.
  14. ;
  15. PartInfoOrdinal dw ?
  16. ;
  17. ; Disk id of disk the partition is on.
  18. ;
  19. PartInfoDiskId dw ?
  20. ;
  21. ; Physical start sector and sector count,
  22. ; and system id from partition table entry for the partition
  23. ;
  24. PartInfoStartSectorl dw ?
  25. PartInfoStartSectorh dw ?
  26. PartInfoSectorCountl dw ?
  27. PartInfoSectorCounth dw ?
  28. PartInfoSystemId db ?
  29. PartInfoPartOpen db ?
  30. PartInfoDiskHandlel dw ?
  31. PartInfoDiskHandleh dw ?
  32. PART_INFO ENDS
  33. PartInfoNext equ dword ptr PartInfoNextl