home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / code / andylib / Notes / wout < prev   
Encoding:
Text File  |  1991-03-07  |  743 b   |  20 lines

  1. wout is a set of library routines which support the creation of a text
  2. display window.
  3.  
  4. int wprintf(ww wind, char *fmt, ...);
  5. int wprintat(ww wind, int x, int y, char *fmt, ...);
  6. void wcharat(ww wind, int x, int y, int ch);
  7. void wtab(ww wind, int x, int y);
  8. wtag wmarkon(ww wind);
  9. void wmarkoff(ww wind, wtag tag);
  10. void wmarkcolour(ww wind, wtag tag, int fore, int back);
  11. void wmarkinvert(ww wind, wtag tag);
  12. void wmarkfont(ww wind, wtag tag, font f);
  13. void wuncover(ww wind, int x, int y);
  14. void wcentre(ww wind, int x, int y);
  15. void wsetcaret(ww wind, int x, int y);
  16. void wgetcaret(ww wind, int *x, int *y);
  17. void wfont(ww wind, font f);
  18. void wcolour(ww wind, int fore, int back);
  19. void wcontrol(ww wind, char *ctl);
  20. ww wnew(wimp_w w, char *ctl);