home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / shell / h / FontLabel < prev    next >
Encoding:
Text File  |  1994-05-22  |  507 b   |  25 lines

  1. /* This is identical to Label_* except all text is printed to the     */
  2. /* screen in an outline font 'trinity.medium' (set in FPrint.c).    */
  3.  
  4. #ifndef __Shell_FontLabel_h
  5. #define __Shell_FontLabel_h
  6.  
  7. #ifndef __Shell_h
  8. #include "Shell.Shell.h"
  9. #endif
  10.  
  11.  
  12. Shell_rectblock *Shell_FontLabel(
  13.     Shell_windblock    *wind,
  14.     int        x,
  15.     int        y,
  16.     int        forecol,
  17.     int        backcol,
  18.     const char    *text
  19.     );
  20.  
  21. Shell_rectblock    *Shell_FontLabelf(
  22.     Shell_windblock *wind, int x, int y, int forecol, int backcol, const char *fmt, ...);
  23.  
  24. #endif
  25.