Ignore:
Timestamp:
Oct 13, 2001, 7:57:58 PM (24 years ago)
Author:
umoeller
Message:

Lots of updates from the last week for conditional compiles and other stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/dosh.h

    r94 r108  
    836836    } LVMINFO, *PLVMINFO;
    837837
    838     #define DOSH_PARTITIONS_LIMIT   10
     838    /* #define DOSH_PARTITIONS_LIMIT   10
    839839
    840840    #define PAR_UNUSED      0x00    // Unused
     
    881881    #define PAR_FREEBSD     0xA5    // FreeBSD
    882882    #define PAR_BBT         0xFF    // BBT
     883    */
    883884
    884885    // one-byte alignment
     
    966967    typedef struct _PARTITIONINFO
    967968    {
    968         BYTE  bDisk;                 // drive number
    969         CHAR  cLetter;               // probable drive letter or ' ' if none
    970         BYTE  bFSType;               // file system type
    971         CHAR  szFSType[10];          // file system name (created by us)
    972         BOOL  fPrimary;              // primary partition?
    973         BOOL  fBootable;             // bootable by Boot Manager?
    974         CHAR  szBootName[9];         // Boot Manager name, if (fBootable)
    975         ULONG ulSize;                // size MBytes
     969        BYTE    bDisk;                 // drive number
     970        CHAR    cLetter;               // probable drive letter or ' ' if none
     971        BYTE    bFSType;               // file system type
     972        PCSZ    pcszFSType;            // file system name (as returned by
     973                                       // doshType2FSName, can be NULL!)
     974        BOOL    fPrimary;              // primary partition?
     975        BOOL    fBootable;             // bootable by Boot Manager?
     976        CHAR    szBootName[9];         // Boot Manager name, if (fBootable)
     977        ULONG   ulSize;                // size MBytes
    976978        PPARTITIONINFO pNext;        // next info or NULL if last
    977979    } PARTITIONINFO;
Note: See TracChangeset for help on using the changeset viewer.