Changeset 2316 for trunk/src/emx/include/InnoTekLIBC/backend.h
- Timestamp:
- Aug 29, 2005, 5:35:39 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/backend.h
-
Property cvs2svn:cvs-rev
changed from
1.33
to1.34
r2315 r2316 398 398 399 399 /** 400 * Opens a file.400 * Opens or creates a file. 401 401 * 402 402 * @returns Filehandle to the opened file on success. 403 403 * @returns Negative error code (errno.h) on failure. 404 404 * @param pszFile Path to the file. 405 * @param fFlags Open flags. 405 * @param fLibc The LIBC open flags (O_*). 406 * @param fShare The share flags (SH_*). 406 407 * @param cbInitial Initial filesize. 407 408 * @param Mode The specified permission mask. 408 * @param fLibc LIBC filehandle flags.409 409 * @param ppFH Where to store the LIBC filehandle structure which was created 410 410 * for the opened file. 411 411 */ 412 int __libc_Back_ioFileOpen(const char *pszFile, int fFlags, off_t cbInitial, mode_t Mode, unsigned fLibc, PLIBCFH *ppFH);412 int __libc_Back_ioFileOpen(const char *pszFile, unsigned fLibc, int fShare, off_t cbInitial, mode_t Mode, PLIBCFH *ppFH); 413 413 414 414 /** -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.