1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef _FS2_REGISTRY_HEADER_FILE
#define _FS2_REGISTRY_HEADER_FILE
#include <cstdlib>
// ------------------------------------------------------------------------------------------------------------
// REGISTRY DEFINES/VARS
//
// exectuable defines
extern const char *Osreg_company_name;
extern const char *Osreg_class_name;
extern const char *Osreg_app_name;
extern const char *Osreg_title;
extern const char *Osreg_config_file_name;
extern bool Ingame_options_save_found;
// ------------------------------------------------------------------------------------------------------------
// REGISTRY FUNCTIONS
//
#ifdef WIN32
time_t os_registry_get_last_modification_time();
#endif
// initialize the registry. setup default keys to use
void os_init_registry_stuff( const char *company, const char *app);
void os_deinit_registry_stuff();
// Writes a string to the registry
void os_config_write_string(const char* section, const char* name, const char* value, bool use_mod_file = false);
// Writes an unsigned int to the INI file.
void os_config_write_uint(const char* section, const char* name, unsigned int value, bool use_mod_file = false);
bool os_config_has_value(const char* section, const char* name, bool use_mod_file = false);
// Reads a string from the INI file. If default is passed,
// and the string isn't found, returns ptr to default otherwise
// returns NULL; Copy the return value somewhere before
// calling os_read_string again, because it might reuse the
// same buffer.
const char * os_config_read_string( const char *section, const char *name, const char *default_value=0, bool use_mod_file = false /*NULL*/ );
// Reads a string from the INI file. Default_value must
// be passed, and if 'name' isn't found, then returns default_value
unsigned int os_config_read_uint( const char *section, const char *name, unsigned int default_value, bool use_mod_file = false );
#endif
|