Changeset 882


Ignore:
Timestamp:
Dec 8, 2003, 6:38:07 AM (22 years ago)
Author:
bird
Message:

Handle dual return values from methods.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/emx/io.h

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r881 r882  
    228228    /** Close operation.
    229229     * @returns 0 on success.
    230      * @returns OS/2 error code on failure.
     230     * @returns OS/2 error code or negated errno on failure.
    231231     * @param   pFH         Pointer to the handle structure to operate on.
    232232     * @param   fh          It's associated filehandle.
     
    235235    /** Read operation.
    236236     * @returns 0 on success.
    237      * @returns OS/2 error code on failure.
     237     * @returns OS/2 error code or negated errno on failure.
    238238     * @param   pFH         Pointer to the handle structure to operate on.
    239239     * @param   fh          It's associated filehandle.
     
    245245    /** Write operation.
    246246     * @returns 0 on success.
    247      * @returns OS/2 error code on failure.
     247     * @returns OS/2 error code or negated errno on failure.
    248248     * @param   pFH         Pointer to the handle structure to operate on.
    249249     * @param   fh          It's associated filehandle.
     
    266266    int (*pfnDuplicate)(struct __libc_FileHandle *pFH, int fh, int *pfhNew);
    267267    /** 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.
    269270     * @param   pFH         Pointer to the handle structure to operate on.
    270271     * @param   fh          It's associated filehandle.
     
    277278    int (*pfnFileControl)(struct __libc_FileHandle *pFH, int fh, int iIOControl, int iArg, int *prc);
    278279    /** 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.
    280282     * @param   pFH         Pointer to the handle structure to operate on.
    281283     * @param   fh          It's associated filehandle.
Note: See TracChangeset for help on using the changeset viewer.