|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T X ┃
Length: 577 (0x241) Types: TextFile Names: »XMoveArea.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« └─⟦2109abc41⟧ └─ ⟦this⟧ »./X.V10R4/Xlib/XMoveArea.c«
#include <X/mit-copyright.h> /* $Header: XMoveArea.c,v 10.4 86/02/01 15:37:15 tony Rel $ */ /* Copyright Massachusetts Institute of Technology 1985 */ #include "XlibInternal.h" XMoveArea (w, srcX, srcY, dstX, dstY, width, height) Window w; int srcX, srcY, dstX, dstY, width, height; { register Display *dpy; register XReq *req; GetReq(X_CopyArea, w); req->func = GXcopy; req->mask = ~0; /* all planes */ req->param.s[0] = height; req->param.s[1] = width; req->param.s[2] = srcX; req->param.s[3] = srcY; req->param.s[6] = dstX; req->param.s[7] = dstY; }