]> icculus.org git repositories - taylor/freespace2.git/blob - include/osregistry.h
Userdir patch from Taylor Richards
[taylor/freespace2.git] / include / osregistry.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 #ifndef _FS2_REGISTRY_HEADER_FILE
10 #define _FS2_REGISTRY_HEADER_FILE
11
12 #include <stdlib.h>
13
14 // ------------------------------------------------------------------------------------------------------------
15 // REGISTRY DEFINES/VARS
16 //
17
18 // exectuable defines
19 extern char *Osreg_company_name;
20 extern char *Osreg_class_name;
21 extern char *Osreg_app_name;
22 extern char *Osreg_title;
23 #ifdef PLAT_UNIX
24 extern char *Osreg_user_dir;
25 #endif
26
27 // ------------------------------------------------------------------------------------------------------------
28 // REGISTRY FUNCTIONS
29 //
30
31
32 // initialize the registry. setup default keys to use
33 void os_init_registry_stuff(char *company, char *app, char *version);
34
35 // Removes a value from to the INI file.  Passing
36 // name=NULL will delete the section.
37 void os_config_remove( char *section, char *name );
38
39 // Writes a string to the registry
40 void os_config_write_string( char *section, char *name, char *value );
41
42 // same as previous function except we don't use the application name to build up the keyname
43 void os_config_write_string2( char *section, char *name, char *value );
44
45 // Writes an unsigned int to the INI file.  
46 void os_config_write_uint( char *section, char *name, unsigned int value );
47
48 // Reads a string from the INI file.  If default is passed,
49 // and the string isn't found, returns ptr to default otherwise
50 // returns NULL;    Copy the return value somewhere before
51 // calling os_read_string again, because it might reuse the
52 // same buffer.
53 char * os_config_read_string( char *section, char *name, char *default_value=NULL );
54
55 // same as previous function except we don't use the application name to build up the keyname
56 char * os_config_read_string2( char *section, char *name, char *default_value=NULL );
57
58 // Reads a string from the INI file.  Default_value must 
59 // be passed, and if 'name' isn't found, then returns default_value
60 unsigned int  os_config_read_uint( char *section, char *name, unsigned int default_value );
61
62 // uses Ex versions of Windows registry functions
63 char * os_config_read_string_ex( char *keyname, char *name, char *default_value );
64
65 #endif
66