home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / IRIT / DRAWFN3S.ZIP / DIR-GRAF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-06  |  568 b   |  17 lines

  1. /******************************************************************************
  2. * Procedures to print/change the current directory.                  *
  3. * Both routine assume the usage of GraphGen.c graphic module, and use the     *
  4. * MenuArea (MsgArea) as i/o (print and read).                      *
  5. *                Ver 0.2        Gershon Elber          May. 89 *
  6. ******************************************************************************/
  7.  
  8. #ifndef DIR_GRAF_H
  9. #define DIR_GRAF_H
  10.  
  11. #define DEFAULT_FILE_TO_DIR  "*.*"
  12.  
  13. void PrintDir(char *FileToDir);
  14. void ChangeDir(void);
  15.  
  16. #endif DIR_GRAF_H
  17.