IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 7, 2004, 12:19:34 PM (22 years ago)
Author:
Paul Price
Message:

Renamed several of the error-handling functions to conform to the
psTypeAction standard naming system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psError.h

    r565 r611  
    1313typedef struct {
    1414    psErrorCode code;                   // An error code
    15     char *descrip;                      // the associated description
     15    const char *descrip;                // the associated description
    1616} psErrorDescription;
    1717
     
    3838                       int nerror);                    ///< number of errors
    3939
    40 const psErr *psGetError(int which);     // return specified error (or an "error" with code PS_ERR_NONE)
    41 const psErr *psLastError(void);         // return last error (or an "error" with code PS_ERR_NONE)
     40const psErr *psErrorGet(int which);     // return specified error (or an "error" with code PS_ERR_NONE)
     41const psErr *psErrorLast(void);         // return last error (or an "error" with code PS_ERR_NONE)
    4242
    4343void psErrorClear(void);                ///< Clear the error stack
     
    4545const char *psErrorCodeString(psErrorCode code);        ///< return the string associated with the error code
    4646void psErrorStackPrint(FILE *fd, const char *fmt, ...); ///< print the errorstack to this file descriptor
    47 void psVErrorStackPrint(FILE *fd,       //< write to this file descriptor
     47void psErrorVStackPrint(FILE *fd,       //< write to this file descriptor
    4848                        const char *fmt,//< format for any header information; may be NULL
    4949                        va_list ap);    //< arguments for format
Note: See TracChangeset for help on using the changeset viewer.