Annotation of 43BSDTahoe/new/X/Xlib/XCopyArea.c, revision 1.1.1.1

1.1       root        1: #include <X/mit-copyright.h>
                      2: 
                      3: /* $Header: XCopyArea.c,v 10.5 86/04/22 15:24:41 jg Rel $ */
                      4: /* Copyright    Massachusetts Institute of Technology    1985  */
                      5: 
                      6: #include "XlibInternal.h"
                      7: XCopyArea (w, srcX, srcY, dstX, dstY, width, height, func, planes)
                      8:        Window w;
                      9:        int func;
                     10:        int srcX, srcY, dstX, dstY, width, height;
                     11:        int planes;
                     12: {
                     13:        register Display *dpy;
                     14:        register XReq *req;
                     15: 
                     16:        GetReq(X_CopyArea, w);
                     17:        req->func = func;
                     18:        req->mask = planes;
                     19:        req->params0 = height;
                     20:        req->params1 = width;
                     21:        req->params2 = srcX;
                     22:        req->params3 = srcY;
                     23:        req->params6 = dstX;
                     24:        req->params7 = dstY;
                     25: }
                     26: 

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.