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.
80 lines
2.7 KiB
80 lines
2.7 KiB
|
|
/* Message definitions in Small Prolog */
|
|
|
|
#define MSG_BASE 5000
|
|
|
|
#define MSG_OVERFLOW (MSG_BASE+1)
|
|
#define MSG_SUBSTSPACE (MSG_BASE+2)
|
|
#define MSG_DYNSPACE (MSG_BASE+3)
|
|
#define MSG_TRAILSPACE (MSG_BASE+4)
|
|
#define MSG_HEAPSPACE (MSG_BASE+5)
|
|
#define MSG_STRINGSPACE (MSG_BASE+6)
|
|
#define MSG_TEMPSPACE (MSG_BASE+7)
|
|
#define MSG_SEESTACK (MSG_BASE+8)
|
|
#define MSG_WILDPOINTER (MSG_BASE+9)
|
|
#define MSG_BADCOPYTYPE (MSG_BASE+10)
|
|
#define MSG_NOTALIST (MSG_BASE+11)
|
|
#define MSG_TAILNOTLIST (MSG_BASE+12)
|
|
#define MSG_HEADNOTLIST (MSG_BASE+13)
|
|
#define MSG_ATOMORSTRING (MSG_BASE+14)
|
|
#define MSG_CANTOPEN (MSG_BASE+15)
|
|
#define MSG_TOOMANYFILES (MSG_BASE+16)
|
|
#define MSG_CANTLOAD (MSG_BASE+17)
|
|
#define MSG_HEADNOTATOM (MSG_BASE+18)
|
|
#define MSG_PARSEERROR (MSG_BASE+19)
|
|
#define MSG_PARSEERROR2 (MSG_BASE+20)
|
|
#define MSG_INTERNALERR (MSG_BASE+21)
|
|
#define MSG_ARGERR (MSG_BASE+22)
|
|
#define MSG_NARGERR (MSG_BASE+23)
|
|
#define MSG_TYPEERR (MSG_BASE+24)
|
|
#define MSG_TYPEATOM (MSG_BASE+25)
|
|
#define MSG_TYPEVAR (MSG_BASE+26)
|
|
#define MSG_TYPESTR (MSG_BASE+27)
|
|
#define MSG_TYPEINT (MSG_BASE+28)
|
|
#define MSG_TYPEPAIR (MSG_BASE+29)
|
|
#define MSG_TYPECLAUSE (MSG_BASE+30)
|
|
#define MSG_TYPEREAL (MSG_BASE+31)
|
|
#define MSG_TYPECHAR (MSG_BASE+32)
|
|
#define MSG_DIVBYZEROR (MSG_BASE+33)
|
|
#define MSG_DIVBYZEROI (MSG_BASE+34)
|
|
#define MSG_NOTVARPRED (MSG_BASE+35)
|
|
#define MSG_NOPRED (MSG_BASE+36)
|
|
#define MSG_STACKCONTENTS (MSG_BASE+37)
|
|
#define MSG_INIQUERY (MSG_BASE+38)
|
|
#define MSG_STRINGQUERY (MSG_BASE+39)
|
|
#define MSG_TOOMANYVARS (MSG_BASE+40)
|
|
#define MSG_PARSERRMSG (MSG_BASE+41)
|
|
#define MSG_SCAN_ERRMSG (MSG_BASE+42)
|
|
#define MSG_EOFINEXP (MSG_BASE+43)
|
|
#define MSG_VARSTOOLONG (MSG_BASE+44)
|
|
#define MSG_BADINT (MSG_BASE+45)
|
|
#define MSG_BADREAL (MSG_BASE+46)
|
|
#define MSG_NOREALS (MSG_BASE+47)
|
|
#define MSG_UNEXPECTED (MSG_BASE+48)
|
|
#define MSG_NONLISTARG (MSG_BASE+49)
|
|
#define MSG_CLOSEBEXPECTED (MSG_BASE+50)
|
|
#define MSG_PROMPTUSER (MSG_BASE+51)
|
|
#define MSG_VARNAMEERR (MSG_BASE+52)
|
|
#define MSG_UNKNOWNTYPE (MSG_BASE+53)
|
|
#define MSG_CLAUSE (MSG_BASE+54)
|
|
#define MSG_EOFINCOMMENT (MSG_BASE+55)
|
|
#define MSG_EOFINCHAR (MSG_BASE+56)
|
|
#define MSG_UNIFYTYPE (MSG_BASE+57)
|
|
#define MSG_NONVARBIND (MSG_BASE+58)
|
|
#define MSG_OCCURCHK (MSG_BASE+59)
|
|
#define MSG_MOLECNOISE (MSG_BASE+60)
|
|
#define MSG_CANTALLOC (MSG_BASE+61)
|
|
#define MSG_NOCFGFILE (MSG_BASE+62)
|
|
#define MSG_OUTBUFOFLOW (MSG_BASE+63)
|
|
#define MSG_YESUPPER (MSG_BASE+64)
|
|
#define MSG_YESLOWER (MSG_BASE+65)
|
|
#define MSG_CFGFILE (MSG_BASE+67)
|
|
|
|
#define MSG_QUERYOK (MSG_BASE+68)
|
|
#define MSG_QUERYFAIL (MSG_BASE+69)
|
|
#define MSG_MORE (MSG_BASE+70)
|
|
#define MSG_ERROR (MSG_BASE+71)
|
|
#define MSG_REGION_FAILURE (MSG_BASE+72)
|
|
#define MSG_LASTMSG (MSG_BASE+73)
|
|
|
|
/* End of prmesg.h */
|