DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T X

⟦22d51ece5⟧ TextFile

    Length: 1015 (0x3f7)
    Types: TextFile
    Names: »XErrDescrip.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─ ⟦this⟧ »./X.V10R4/Xlib/XErrDescrip.c« 

TextFile

#include <X/mit-copyright.h>

/* $Header: XErrDescrip.c,v 10.4 86/02/01 15:32:52 tony Rel $ */
/* Copyright    Massachusetts Institute of Technology    1985	*/

#include "XlibInternal.h"
#define num_error_codes 13

char *XErrorList[num_error_codes + 1] = {
	/* No error		*/	"",
	/* BadRequest		*/	"bad request code",
	/* BadValue		*/	"integer parameter out of range",
	/* BadWindow		*/	"parameter not a Window",
	/* BadPixmap		*/	"parameter not a Pixmap",
	/* BadBitmap		*/	"parameter not a Bitmap",
	/* BadCursor		*/	"parameter not a Cursor",
	/* BadFont		*/	"parameter not a Font",
	/* BadMatch		*/	"parameter mismatch",
	/* BadTile		*/	"Pixmap shape invalid for tiling",
	/* BadGrab		*/	"button/mouse already grabbed",
	/* BadAccess		*/	"access control violation",
	/* BadAlloc		*/	"insufficient resources",
    	/* BadColor 	    	*/  	"no such color",
};

char *XErrDescrip (code)
    register int code;
{
    if (code <= num_error_codes && code > 0)
	return (XErrorList[code]);
    return("Unknown error");
}