Ignore:
Timestamp:
Dec 5, 2001, 9:37:33 PM (24 years ago)
Author:
umoeller
Message:

Misc changes.

File:
1 edited

Legend:

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

    r115 r121  
    366366        HFILE       hf;
    367367        ULONG       hmtx;       // a HMTX really
     368        ULONG       flOpenMode; // as given to doshOpen
    368369        ULONG       cbInitial,  // intial file size on open (can be 0 if new)
    369370                    cbCurrent;  // current file size (raised with each write)
    370371    } XFILE, *PXFILE;
    371372
    372     #define XOPEN_READ_EXISTING             1
    373     #define XOPEN_READWRITE_APPEND          2
    374     #define XOPEN_READWRITE_NEW             3
     373    #define XOPEN_READ_EXISTING           0x0001
     374    #define XOPEN_READWRITE_APPEND        0x0002
     375    #define XOPEN_READWRITE_NEW           0x0003
     376    #define XOPEN_ACCESS_MASK             0xffff
     377
     378    #define XOPEN_BINARY              0x10000000
    375379
    376380    APIRET doshOpen(PCSZ pcszFilename,
    377                     ULONG ulOpenMode,
     381                    ULONG flOpenMode,
    378382                    PULONG pcbFile,
    379383                    PXFILE *ppFile);
Note: See TracChangeset for help on using the changeset viewer.