Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
disksp.h
Abstract:
Disks Resource DLL private definitions.
Author:
Rod Gamache (rodga) 29-Mar-1996
Revision History:
--*/
#define MAX_PARTITIONS 128
//
// The following structure in inserted into a table (based on disk number).
// The letters are indexed by order of their partitions in the registry.
//
typedef struct _DISK_INFO { DWORD PhysicalDrive; HANDLE FileHandle; UCHAR Letters[MAX_PARTITIONS]; } DISK_INFO, *PDISK_INFO;
|