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.

34 lines
533 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. disksp.h
  5. Abstract:
  6. Disks Resource DLL private definitions.
  7. Author:
  8. Rod Gamache (rodga) 29-Mar-1996
  9. Revision History:
  10. --*/
  11. #define MAX_PARTITIONS 128
  12. //
  13. // The following structure in inserted into a table (based on disk number).
  14. // The letters are indexed by order of their partitions in the registry.
  15. //
  16. typedef struct _DISK_INFO {
  17. DWORD PhysicalDrive;
  18. HANDLE FileHandle;
  19. UCHAR Letters[MAX_PARTITIONS];
  20. } DISK_INFO, *PDISK_INFO;