home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sa104os2.zip / SATHR104.ZIP / SATHER / CONTRIB / SCHNETTR / XLIB / PIXMAP.C < prev    next >
C/C++ Source or Header  |  1994-11-28  |  438b  |  23 lines

  1. /* -*-C-*-
  2.  * access to the X Window System for Sather
  3.  * (c) 1994/11/03 - 1994/11/28 by Erik Schnetter
  4.  */
  5.  
  6. #include <X11/X.h>
  7. #include <X11/Xlib.h>
  8. #include "../../System/header.h"
  9.  
  10.  
  11.  
  12. INT X_CreatePixmap (Display* display, INT drawable,
  13.             INT width, INT height, INT depth)
  14. {
  15.   return XCreatePixmap (display, drawable,
  16.             width, height, depth);
  17. }
  18.  
  19. void X_FreePixmap (Display* display, INT pixmap)
  20. {
  21.   XFreePixmap (display, pixmap);
  22. }
  23.