32 lines
362 B
Plaintext
32 lines
362 B
Plaintext
// error.api
|
|
//
|
|
#ifndef _ERROR_API
|
|
#define _ERROR_API
|
|
//+
|
|
// Harbour project
|
|
//
|
|
// 99.04.25 initial posting.
|
|
// compatible
|
|
//-
|
|
|
|
#include "error.ch"
|
|
|
|
|
|
//
|
|
// error flag definations
|
|
//
|
|
|
|
#define EF_CANRETRY 1
|
|
#define EF_CANDEFAULT 4
|
|
|
|
//
|
|
// error codes (returned from _errLaunch())
|
|
//
|
|
|
|
#define E_BREAK 0xffff
|
|
#define E_RETRY 1
|
|
#define E_DEFAULT 0
|
|
|
|
#endif
|
|
|