home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / printer / graphpaper / src / src.lha / messages.c < prev    next >
C/C++ Source or Header  |  1993-04-06  |  486b  |  26 lines

  1. #include "graph.h"
  2.  
  3. char messagebuf[100]; /* for general use to store messages */
  4.  
  5. /* Routines for displaying messages to the user.                 */
  6. /* These just write to the title for now, because it's so easy.  */
  7. /* I should really do something fancier.                         */
  8.  
  9. static void settitle(char *msg)
  10. {
  11.     SetWindowTitles(wG, (UBYTE *)msg, NULL);
  12. }
  13.  
  14.  
  15.  
  16. void initmessage(void)
  17. {
  18.     settitle("GraphPaper v" VERSION);
  19. }
  20.  
  21.  
  22. void message(char *msg)
  23. {
  24.     settitle(msg);
  25. }
  26.