home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 7 / POWERCD7.ISO / prgmming / clipper / barclear.prg < prev    next >
Text File  |  1993-10-14  |  1KB  |  67 lines

  1. /*
  2.  * File......: BARCLEAR.PRG
  3.  * Author....: Martin Colloby
  4.  * BBS.......: The Dark Knight Returns
  5.  * Net/Node..: 050/069
  6.  * User Name.: Martin Colloby
  7.  * Date......: 18/4/93
  8.  * Revision..: 1.0
  9.  *
  10.  * This is an original work by Martin Colloby and is placed in the public
  11.  * domain.
  12.  *
  13.  * Modification history:
  14.  * ---------------------
  15.  *
  16.  * $Log$
  17.  *
  18.  */
  19.  
  20.  
  21. /*  $DOC$
  22.  *  $FUNCNAME$
  23.  *      GT_BARCLEAR()
  24.  *  $CATEGORY$
  25.  *      Video
  26.  *  $ONELINER$
  27.  *      Clear the bar area on the screen
  28.  *  $SYNTAX$
  29.  *      GT_BarClear()
  30.  *  $ARGUMENTS$
  31.  *      None
  32.  *  $RETURNS$
  33.  *      NIL
  34.  *  $DESCRIPTION$
  35.  *      Clears the area used to display bars on screen.  Assumes that the
  36.  *      user has output a bar, and wishes to output another.
  37.  *  $EXAMPLES$
  38.  *
  39.  *  $SEEALSO$
  40.  *
  41.  *  $INCLUDE$
  42.  *      GT_LIB.CH
  43.  *  $END$
  44.  */
  45.  
  46. *
  47. #include "GT_lib.ch"
  48.  
  49. FUNCTION GT_BarClear()
  50.  
  51. /*****************************************************************************
  52.  Purpose - Clear the bar area
  53.  Returns - None
  54.  Author  - Martin Colloby
  55.  Created - 13/11/91
  56. ******************************************************************************
  57.  Parameters - None
  58.  Privates   - None
  59.  Locals     - None
  60.  Externals  - None
  61. *****************************************************************************/
  62.  
  63. @ MAXROW() - 4 , 20 SAY "                                        "
  64.  
  65. RETURN NIL
  66. *
  67.