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.

31 lines
682 B

  1. ;
  2. ; Per-disk structure. The code in diskio.asm builds a linked list of
  3. ; structures that use these as their header. The remainder of each
  4. ; item in the linked list is specific to the type of disk
  5. ; (currently only int13 units are supported).
  6. ;
  7. DISK_INFO STRUC
  8. ;
  9. ; Pointer to next structure in the linked list.
  10. ;
  11. DiskInfoNextl dw ?
  12. DiskInfoNexth dw ?
  13. ;
  14. ; Disk id/ordinal. These start at 0 and count upwards.
  15. ;
  16. DiskInfoDiskId dw ?
  17. DiskInfoDiskOpen db ?
  18. DISK_INFO ENDS
  19. DiskInfoNext equ dword ptr DiskInfoNextl
  20. PARTCLASS_FAT equ 1
  21. PARTCLASS_FAT32 equ 2
  22. PARTCLASS_NTFS equ 3
  23. PARTCLASS_OTHER equ 4