home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / modula2 / ss_ansi.zip / SSFX.DEF < prev    next >
Text File  |  1991-05-14  |  826b  |  30 lines

  1. DEFINITION MODULE SSFX;
  2.  
  3. (* (C) Copyright 1991 by Stuart J. Whitmore.  Permission to copy and distribute
  4.    without profit granted.  Permission to use in applications royalty-free
  5.    granted.  All other rights reserved. *)
  6.    
  7. PROCEDURE Cls;
  8.     (* Clears the screen. *)
  9.  
  10. PROCEDURE Blink;
  11.     (* Causes text to blink on the screen.  Return to normal with Norm. *)
  12.  
  13. PROCEDURE Rvs;
  14.     (* Causes text to appear in reverse-video mode.  Return to normal with
  15.        Norm. *)
  16.  
  17. PROCEDURE Bold;
  18.     (* Causes text to appear in bold print.  Return to normal with Norm. *)
  19.  
  20. PROCEDURE Norm;
  21.     (* Normalizes text display. *)
  22.  
  23. PROCEDURE Underline;
  24.     (* Causes text to appear underlined.  IBM Monochrome only. *)
  25.  
  26. PROCEDURE MoveBack (n : CARDINAL);
  27.     (* Moves the cursor back n positions. *)
  28.  
  29. END SSFX.
  30.