Changeset 611
- Timestamp:
- May 7, 2004, 12:19:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psError.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psError.h
r565 r611 13 13 typedef struct { 14 14 psErrorCode code; // An error code 15 c har *descrip;// the associated description15 const char *descrip; // the associated description 16 16 } psErrorDescription; 17 17 … … 38 38 int nerror); ///< number of errors 39 39 40 const psErr *ps GetError(int which); // return specified error (or an "error" with code PS_ERR_NONE)41 const psErr *ps LastError(void); // return last error (or an "error" with code PS_ERR_NONE)40 const psErr *psErrorGet(int which); // return specified error (or an "error" with code PS_ERR_NONE) 41 const psErr *psErrorLast(void); // return last error (or an "error" with code PS_ERR_NONE) 42 42 43 43 void psErrorClear(void); ///< Clear the error stack … … 45 45 const char *psErrorCodeString(psErrorCode code); ///< return the string associated with the error code 46 46 void psErrorStackPrint(FILE *fd, const char *fmt, ...); ///< print the errorstack to this file descriptor 47 void ps VErrorStackPrint(FILE *fd, //< write to this file descriptor47 void psErrorVStackPrint(FILE *fd, //< write to this file descriptor 48 48 const char *fmt,//< format for any header information; may be NULL 49 49 va_list ap); //< arguments for format
Note:
See TracChangeset
for help on using the changeset viewer.
