Ignore:
Timestamp:
Sep 28, 2004, 3:46:31 AM (21 years ago)
Author:
bird
Message:

_realrealpath().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/InnoTekLIBC/backend.h

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r1522 r1523  
    134134 * @param   pszBuf      Where to store the resolved path.
    135135 * @param   cchBuf      Size of the buffer.
    136  * @param   fFlags      At the moment 0. Which means the entire path must exist.
     136 * @param   fFlags      Combination of __LIBC_BACKFS_FLAGS_RESOLVE_* defines.
    137137 */
    138138int __libc_Back_fsPathResolve(const char *pszPath, char *pszBuf, size_t cchBuf, unsigned fFlags);
     139/** Flags for __libc_Back_fsPathResolve().
     140 * @{ */
     141#define __LIBC_BACKFS_FLAGS_RESOLVE_FULL    0
     142/** Get the native path instead, no unix root translations. */
     143#define __LIBC_BACKFS_FLAGS_RESOLVE_NATIVE  0x10
     144/** @} */
     145
    139146
    140147/**
Note: See TracChangeset for help on using the changeset viewer.