Changeset 882
- Timestamp:
- Dec 8, 2003, 6:38:07 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/emx/io.h
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r881 r882 228 228 /** Close operation. 229 229 * @returns 0 on success. 230 * @returns OS/2 error code o n failure.230 * @returns OS/2 error code or negated errno on failure. 231 231 * @param pFH Pointer to the handle structure to operate on. 232 232 * @param fh It's associated filehandle. … … 235 235 /** Read operation. 236 236 * @returns 0 on success. 237 * @returns OS/2 error code o n failure.237 * @returns OS/2 error code or negated errno on failure. 238 238 * @param pFH Pointer to the handle structure to operate on. 239 239 * @param fh It's associated filehandle. … … 245 245 /** Write operation. 246 246 * @returns 0 on success. 247 * @returns OS/2 error code o n failure.247 * @returns OS/2 error code or negated errno on failure. 248 248 * @param pFH Pointer to the handle structure to operate on. 249 249 * @param fh It's associated filehandle. … … 266 266 int (*pfnDuplicate)(struct __libc_FileHandle *pFH, int fh, int *pfhNew); 267 267 /** File Control operation. 268 * @returns 0 on success, OS/2 error code on failure. 268 * @returns 0 on success. 269 * @returns OS/2 error code or negated errno on failure. 269 270 * @param pFH Pointer to the handle structure to operate on. 270 271 * @param fh It's associated filehandle. … … 277 278 int (*pfnFileControl)(struct __libc_FileHandle *pFH, int fh, int iIOControl, int iArg, int *prc); 278 279 /** I/O Control operation. 279 * @returns 0 on success, OS/2 error code on failure. 280 * @returns 0 on success. 281 * @returns OS/2 error code or negated errno on failure. 280 282 * @param pFH Pointer to the handle structure to operate on. 281 283 * @param fh It's associated filehandle. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.