Ignore:
Timestamp:
Dec 21, 2004, 2:38:04 AM (21 years ago)
Author:
bird
Message:

Inode and Dev stuff of stat/lstat/fstat.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/sys/b_fs.h

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r1749 r1750  
    3131#include <sys/syslimits.h>
    3232#include <sys/types.h>
     33
    3334#include <InnoTekLIBC/sharedpm.h>
    3435#include "backend.h"
     
    136137/**
    137138 * Creates the unix EAs for a new file or directory.
     139
    138140 * @returns 0 on success.
    139141 * @returns Negative errno on failure.
    140142 * @param   hFile           File handle to the newly created fs object. If no
    141143 *                          handle handy, set to -1.
    142  * @param   pszNativePath   Native path of the newly created fs object. If
    143  *                          handle is give this will be ignored.
     144 * @param   pszNativePath   Native path to the newly created fs object.
    144145 * @param   mode            The specified file permission mode mask.
    145  */
    146 int __libc_back_fsUnixAttribsSet(int hFile, const char *pszNativePath, mode_t mode);
     146 * @param   pDev            Where to store the dev number.
     147 * @param   pInode          Where to store the calculated inode number.
     148 */
     149int __libc_back_fsUnixAttribsSet(int hFile, const char *pszNativePath, mode_t mode, dev_t *pDev, ino_t *pInode);
    147150
    148151/**
     
    197200int __libc_back_fsNativeFileStat(const char *pszNativePath, struct stat *pStat);
    198201
     202
     203
     204
     205
     206
     207
     208
     209
     210
     211
     212
    199213
    200214__END_DECLS
Note: See TracChangeset for help on using the changeset viewer.