1: #include <X/mit-copyright.h>
   2: 
   3: /* $Header: XCharWidths.c,v 10.4 86/02/01 15:29:46 tony Rel $ */
   4: /* Copyright    Massachusetts Institute of Technology    1985	*/
   5: 
   6: #include "XlibInternal.h"
   7: /* returns number of widths on success, NULL on error */
   8: 
   9: int XCharWidths (chars, len, font, widths)
  10:         char *chars;  /* not necessarily null-terminated */
  11:     int len;
  12:     Font font;
  13:     short *widths;
  14: {
  15:     register Display *dpy;
  16:     register XReq *req;
  17:     XRep rep;
  18: 
  19:     GetReq(X_CharWidths, 0);
  20:     req->param.l[0] = font;
  21:     req->param.s[2] = len;
  22:     Data (dpy, chars, len);
  23:     if (!_XReply(dpy, &rep))
  24:         return(NULL);
  25: 
  26:     _XReadPad (dpy, (char *)widths, rep.param.l[0]);
  27:     return(rep.param.l[0] >> 1);
  28: }

Defined functions

XCharWidths defined in line 9; used 1 times
Last modified: 1986-02-01
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 728
Valid CSS Valid XHTML 1.0 Strict