25 lines
333 B
C++
25 lines
333 B
C++
|
|
// Author: Jim Kowalkowski
|
|
// Date: 3/97
|
|
//
|
|
// $Id$
|
|
// $Log$
|
|
|
|
// -------------------------- Error messages -------------------------
|
|
|
|
char* gddErrorMessages[]=
|
|
{
|
|
"Invalid",
|
|
"TypeMismatch",
|
|
"NotAllowed",
|
|
"AlreadyDefined",
|
|
"NewFailed",
|
|
"OutOfBounds",
|
|
"AtLimit",
|
|
"NotDefined",
|
|
"NotSupported",
|
|
"Overflow",
|
|
"Underflow"
|
|
};
|
|
|