home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Demo / FileIO.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-18  |  1.8 KB  |  59 lines

  1. #ifndef MYFILEIO_H
  2. #define MYFILEIO_H
  3.  
  4. /****************************************************************
  5.  *                                                                                                                            *
  6.  * Filename : FileIO Definition                                                                    *
  7.  *                                                                                                                            *
  8.  ****************************************************************
  9.  *                                                                                                                            *
  10.  *    Comment : Includedatei für alle File I/O's                                    *
  11.  *                                                                                                                            *
  12.  *                                                                                                                            *
  13.  *                                                                                                                            *
  14.  *            Rev : V1.0                                                                                            *
  15.  *                                                                                                                            *
  16.  *    History : V1.0 erstellen dieses Files                            20.06.89    *
  17.  *                                                                                                                            *
  18.  *            Doc :                                                                                                        *
  19.  *                                                                                                                            *
  20.  *         Bugs : keine bekannten                                                                        *
  21.  *                                                                                                                            *
  22.  *        Autor : Oesch Silvano                                                                            *
  23.  *                                                                                                                            *
  24.  *        Datum : 20.06.89                                                                                    *
  25.  *                                                                                                                            *
  26.  ****************************************************************/
  27.  
  28.  
  29.  
  30. BYTE Colorname_input[FCHARS +1]="FPLOT.config";
  31.                                                                         /* Inputfilename                        */
  32. BYTE DirColname_input[MAXPATH]="S:";
  33.                                                                         /* Inputdirectory                        */
  34. BYTE Colorname_output[FCHARS +1]="FPLOT.config";
  35.                                                                         /* Outputfilename                        */
  36. BYTE DirColname_output[MAXPATH]="S:";
  37.                                                                         /* Outputdirectory                    */
  38.  
  39. BYTE Filename_input[FCHARS +1];            /* Inputfilename                        */
  40. BYTE Dirname_input[MAXPATH];                /* Inputdirectory                        */
  41. BYTE Filename_output[FCHARS +1];        /* Outputfilename                        */
  42. BYTE Dirname_output[MAXPATH];                /* Outputdirectory                    */
  43.  
  44. /*
  45.  
  46. struct FileRequester
  47. fileoutput={
  48.                             "Sichern unter",
  49.                             Filename_output,
  50.                             Dirname_output,
  51.                             NULL,
  52.                             FRF_DoColor,
  53.                             FRF_NewWindFunc,
  54.                             NULL,
  55.                         };
  56.  
  57. */
  58. #endif MYFILEIO_H
  59.