home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume27 / ytalk-3.0 / part01 / xwin.h < prev    next >
C/C++ Source or Header  |  1993-08-20  |  1KB  |  36 lines

  1. /* xwin.h -- X Windows interface (xwin.c) */
  2.  
  3. /*               NOTICE
  4.  *
  5.  * Copyright (c) 1990,1992,1993 Britt Yenne.  All rights reserved.
  6.  * 
  7.  * This software is provided AS-IS.  The author gives no warranty,
  8.  * real or assumed, and takes no responsibility whatsoever for any 
  9.  * use or misuse of this software, or any damage created by its use
  10.  * or misuse.
  11.  * 
  12.  * This software may be freely copied and distributed provided that
  13.  * no part of this NOTICE is deleted or edited in any manner.
  14.  * 
  15.  */
  16.  
  17. /* Mail comments or questions to ytalk@austin.eds.com */
  18.  
  19. #ifdef USE_X11
  20.  
  21. extern void    init_xwin    ();
  22. extern void    end_xwin    ();
  23. extern int    open_xwin    ( /* yuser, title */ );
  24. extern void    close_xwin    ( /* yuser */ );
  25. extern void    addch_xwin    ( /* yuser, char */ );
  26. extern void    move_xwin    ( /* yuser, y, x */ );
  27. extern void    clreol_xwin    ( /* yuser */ );
  28. extern void    clreos_xwin    ( /* yuser */ );
  29. extern void    scroll_xwin    ( /* yuser */ );
  30. extern void    rev_scroll_xwin    ( /* yuser */ );
  31. extern void    flush_xwin    ( /* yuser */ );
  32.  
  33. #endif
  34.  
  35. /* EOF */
  36.