mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
703 B
27 lines
703 B
/*** erf.h - Definitions for Error Reporting
|
|
*
|
|
* History:
|
|
* 10-Aug-1993 bens Initial version
|
|
* 11-Feb-1994 bens Remove all message-related stuff
|
|
*/
|
|
|
|
#ifndef INCLUDED_FCI_ERF
|
|
#define INCLUDED_FCI_ERF 1
|
|
|
|
|
|
/*** ErfSetCodes - Set error codes (no message formatting)
|
|
*
|
|
* Entry
|
|
* perf - ERF structure to receive formatted message
|
|
* erfOper - Internal error code
|
|
* erfType - errno value (usually)
|
|
*
|
|
* Exit-Success
|
|
* perf - is filled in with appropriate error fields
|
|
*
|
|
* Exit-Failure
|
|
* perf filled in with message describing bad arguments.
|
|
*/
|
|
void ErfSetCodes(PERF perf, int erfOper, int erfType);
|
|
|
|
#endif // !INCLUDED_FCI_ERF
|