Ignore:
Timestamp:
May 6, 2005, 5:36:47 AM (20 years ago)
Author:
bird
Message:

[lf]utimes.

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.21 to 1.22
    r1971 r1972  
    289289
    290290/**
    291  * Sets the file access mode of a file.
     291 * Sets the file access mode of a symlink.
    292292 *
    293293 * @returns 0 on success.
     
    297297 */
    298298int __libc_Back_fsSymlinkModeSet(const char *pszPath, mode_t Mode);
     299
     300/**
     301 * Sets the file times of a symlink.
     302 *
     303 * @returns 0 on success.
     304 * @returns Negative error code (errno.h) on failure.
     305 * @param   pszPath The path to the file to set the mode of.
     306 * @param   paTimes Two timevalue structures. If NULL the current time is used.
     307 */
     308int __libc_Back_fsSymlinkTimesSet(const char *pszPath, const struct timeval *paTimes);
    299309
    300310/**
     
    338348 */
    339349int __libc_Back_fsFileModeSetFH(int fh, mode_t Mode);
     350
     351/**
     352 * Sets the file the times of a file.
     353 *
     354 * @returns 0 on success.
     355 * @returns Negative error code (errno.h) on failure.
     356 * @param   pszPath The path to the file to set the times of.
     357 * @param   paTimes Two timevalue structures. If NULL the current time is used.
     358 */
     359int __libc_Back_fsFileTimesSet(const char *pszPath, const struct timeval *paTimes);
     360
     361/**
     362 * Sets the file the times of a file by filehandle.
     363 *
     364 * @returns 0 on success.
     365 * @returns Negative error code (errno.h) on failure.
     366 * @param   fh      Handle to file.
     367 * @param   paTimes Two timevalue structures. If NULL the current time is used.
     368 */
     369int __libc_Back_fsFileTimesSetFH(int fh, const struct timeval *paTimes);
    340370
    341371/**
Note: See TracChangeset for help on using the changeset viewer.