Changeset 841 for trunk/dll/fsopen.c
- Timestamp:
- Sep 23, 2007, 6:27:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/fsopen.c
r689 r841 18 18 #define INCL_WIN 19 19 #define INCL_DOS 20 #define INCL_LONGLONG 20 21 21 22 #include <os2.h> … … 33 34 { 34 35 35 ULONG openflag = OPEN_ACTION_OPEN_IF_EXISTS, openmode = 0, action = 0; 36 ULONG openflag = OPEN_ACTION_OPEN_IF_EXISTS, openmode = 0; 37 ULONGLONG action = 0; 36 38 HFILE handle; 37 39 FILE *fp; … … 66 68 else 67 69 openmode |= OPEN_FLAGS_RANDOMSEQUENTIAL; 68 if (DosOpen (filename, &handle, &action, 0L, FILE_NORMAL, openflag, openmode,69 (PEAOP2) 0))70 if (DosOpenL(filename, &handle, &action, 0, FILE_NORMAL, openflag, openmode, 71 (PEAOP2) 0)) 70 72 return NULL; 71 73 if (mode[strlen(mode) - 1] == 't')
Note:
See TracChangeset
for help on using the changeset viewer.