home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / CFG.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  551b  |  18 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /* =======================================================================
  4.     CFG.h       Configuration file handler.
  5.                 A. Reitsma, Delft, The Netherlands.
  6.                 v1.00  94-07-09  Public Domain.
  7.  ---------------------------------------------------------------------- */
  8.  
  9. struct CfgStrings
  10. {
  11.     char * name ;
  12.     char * data ;
  13. };
  14.  
  15. int CfgRead( char * Filename, struct CfgStrings * CfgInfo );
  16.  
  17. /* ==== CFG.h end ===================================================== */
  18.