Changeset 1972 for trunk/src/emx/include/InnoTekLIBC/backend.h
- Timestamp:
- May 6, 2005, 5:36:47 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.21
to1.22
r1971 r1972 289 289 290 290 /** 291 * Sets the file access mode of a file.291 * Sets the file access mode of a symlink. 292 292 * 293 293 * @returns 0 on success. … … 297 297 */ 298 298 int __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 */ 308 int __libc_Back_fsSymlinkTimesSet(const char *pszPath, const struct timeval *paTimes); 299 309 300 310 /** … … 338 348 */ 339 349 int __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 */ 359 int __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 */ 369 int __libc_Back_fsFileTimesSetFH(int fh, const struct timeval *paTimes); 340 370 341 371 /** -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.