Annotation of 43BSDTahoe/new/X/Xlib/XPixmapPut.c, revision 1.1

1.1     ! root        1: #include <X/mit-copyright.h>
        !             2: 
        !             3: /* $Header: XPixmapPut.c,v 10.6 86/04/22 15:21:00 jg Rel $ */
        !             4: /* Copyright    Massachusetts Institute of Technology    1985  */
        !             5: 
        !             6: #include "XlibInternal.h"
        !             7: XPixmapPut (w, source_x, source_y, dest_x, dest_y, 
        !             8: width, height, pixmap, func, planes)
        !             9:        Window w;
        !            10:        int source_x, source_y, dest_x, dest_y, width, height;
        !            11:        Pixmap pixmap;
        !            12:        int func, planes;
        !            13: {
        !            14:        register Display *dpy;
        !            15:        register XReq *req;
        !            16: 
        !            17:        GetReq(X_PixmapPut, w);
        !            18:        req->mask = planes;
        !            19:        req->func = func;
        !            20:        req->params0 = height;
        !            21:        req->params1 = width;
        !            22:        req->params2 = source_x;
        !            23:        req->params3 = source_y;
        !            24:        req->param.l[2] = pixmap;
        !            25:        req->params6 = dest_x;
        !            26:        req->params7 = dest_y;
        !            27:        return;
        !            28: }
        !            29: 

unix.superglobalmegacorp.com

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