Changeset 121 for trunk/include/helpers
- Timestamp:
- Dec 5, 2001, 9:37:33 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/dosh.h
r115 r121 366 366 HFILE hf; 367 367 ULONG hmtx; // a HMTX really 368 ULONG flOpenMode; // as given to doshOpen 368 369 ULONG cbInitial, // intial file size on open (can be 0 if new) 369 370 cbCurrent; // current file size (raised with each write) 370 371 } XFILE, *PXFILE; 371 372 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 375 379 376 380 APIRET doshOpen(PCSZ pcszFilename, 377 ULONG ulOpenMode,381 ULONG flOpenMode, 378 382 PULONG pcbFile, 379 383 PXFILE *ppFile); -
trunk/include/helpers/except.h
r113 r121 102 102 103 103 // "exception" hook 104 typedef VOID APIENTRY FNEXCHOOK(FILE*, PTIB );104 typedef VOID APIENTRY FNEXCHOOK(FILE*, PTIB, ULONG); // V0.9.16 (2001-12-02) [pr] 105 105 typedef FNEXCHOOK *PFNEXCHOOK; 106 106
Note:
See TracChangeset
for help on using the changeset viewer.