IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2004, 11:14:58 AM (22 years ago)
Author:
desonia
Message:

fixed/tested psErrorRegister and psErrorCodeString.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psErrorCodes.h

    r1905 r2129  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-27 20:38:02 $
     9 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-10-14 21:14:58 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6464psErrorDescription;
    6565
     66/** Allocates a new psErrorDescription
     67 *
     68 *  @return psErrorDescription*        new psErrorDescription struct.
     69 */
     70psErrorDescription* psErrorDescriptionAlloc(
     71    psErrorCode code,                  ///< An error code
     72    const char *description            ///< the associated description
     73);
     74
    6675/** Retrieves the description of an error code.
    6776 *
     
    8796);
    8897
     98/** Clears error codes registered via psErrorRegister.
     99 *
     100 *  @return bool    TRUE if given errorcode was removed, otherwise FALSE.
     101 */
     102bool p_psErrorUnregister(
     103    psErrorCode code                   ///< the error code to find and remove
     104);
     105
    89106/// @}
    90107
Note: See TracChangeset for help on using the changeset viewer.