Files
sics/ecode.c
koennecke 91d4af0541 - Adapted indenation to new agreed upon system
- Added support for second generation scriptcontext based counter
2009-02-13 09:00:03 +00:00

26 lines
475 B
C

/*--------------------------------------------------------------------------
Textual representation of the error-status codes defined in
Scommon.h
Mark Koennecke, February 1997
----------------------------------------------------------------------------*/
#ifndef ERRSTAT
#define ERRSTAT
static char *pErrStat[] = {
" ",
"OK",
"HWIdle",
"HWBusy",
"HWFault",
"HWPosFault",
"HWCrash",
"Out of memory",
"No Beam",
"Paused",
NULL
};
#endif