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

1.1     ! root        1: #include <X/mit-copyright.h>
        !             2: 
        !             3: /* $Header: XStoreBitmap.c,v 10.6 86/04/22 15:28:12 jg Rel $ */
        !             4: /* Copyright    Massachusetts Institute of Technology    1985  */
        !             5: 
        !             6: #include "XlibInternal.h"
        !             7: Bitmap XStoreBitmap (width, height, data)
        !             8:        int width, height;
        !             9:        short *data;
        !            10: {
        !            11:        register Display *dpy;
        !            12:        register XReq *req;
        !            13:        XRep rep;
        !            14:        int len;
        !            15: 
        !            16:        GetReq(X_StoreBitmap, 0);
        !            17:        req->params0 = height;
        !            18:        req->params1 = width;
        !            19:        len = BitmapSize (width, height)/UBPS;
        !            20:        PackData(dpy, data, len);
        !            21:        if (!_XReply(dpy, &rep))
        !            22:            return(NULL);
        !            23:        return (rep.param.l[0]);
        !            24: }
        !            25: 

unix.superglobalmegacorp.com

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