Files
harbour-core/harbour/include/error.api
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

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