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

⟦451b62c9f⟧ TextFile

    Length: 538 (0x21a)
    Types: TextFile
    Names: »XCharBitmap.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/XCharBitmap.c« 

TextFile

#include <X/mit-copyright.h>

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

#include "XlibInternal.h"
Bitmap XCharBitmap (font, the_char)
    Font font;
    int the_char;  /* can't call it "char"; that's a C keyword */
{
    register Display *dpy;
    register XReq *req;
    XRep rep;

    GetReq (X_CharBitmap, 0);
    req->param.l[0] = font;
    req->params2 = the_char;
    if (!_XReply (dpy, &rep))
    	return (NULL);
    return (rep.param.l[0]);
}