/**

  * Namespace INIParser written by Justin Klein 2004

  * Revised by Nakul Verma 2004

**/

 

/**

  * This namespace contains a simple set of helper functions to read from and

  * write to .INI files in windows.

  **/

      void PutHex ( char *file, char* section, char* key, int newVal );

      void PutLong( char *file, char* section, char* key, long newVal );

      void PutInt ( char *file, char* section, char* key, int newVal);

      void PutDouble( char* file, char* section, char* key, double newVal );

      void PutString( char* file, char* section, char* key, char* newVal );

 

      int GetHex( char *file, char* section, char* key, int defaultVal );

      long GetLong( char *file, char* section, char* key, long defaultVal );

      int GetInt(char *file, char* section, char* key, int defaultVal);

      double GetDouble( char* file, char* section, char* key, double defaultVal );

      void GetString( char* file, char* section, char* key, char* retVal, int retValSize, char* defaultVal );