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

⟦19fd9d4a4⟧ TextFile

    Length: 709 (0x2c5)
    Types: TextFile
    Names: »XStoreCursor.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/XStoreCursor.c« 

TextFile

#include <X/mit-copyright.h>

/* $Header: XStoreCursor.c,v 10.5 86/04/22 15:29:29 jg Rel $ */
/* Copyright    Massachusetts Institute of Technology    1985	*/

#include "XlibInternal.h"
Cursor XStoreCursor (cbitmap, mbitmap, xOffset, yOffset,
    foreground, background, func)
	Bitmap cbitmap, mbitmap;
	int xOffset, yOffset;
	int func;
	int foreground, background;
{
	register Display *dpy;
	register XReq *req;
	XRep rep;

	GetReq(X_StoreCursor, 0);
	req->func = func;
	req->param.l[0] = cbitmap;
	req->paramu2 = foreground;
	req->paramu3 = background;
	req->param.l[2] = mbitmap;
	req->params6 = xOffset;
	req->params7 = yOffset;
	if (!_XReply (dpy, &rep))
	    return (NULL);
	return (rep.param.l[0]);
}