23 |
|
|
24 |
|
#include <stdio.h> |
25 |
|
|
26 |
< |
extern void PrefsInit(int argc, char **argv); |
26 |
> |
extern void PrefsInit(int &argc, char **&argv); |
27 |
|
extern void PrefsExit(void); |
28 |
|
|
29 |
+ |
extern void PrefsPrintUsage(void); |
30 |
+ |
|
31 |
|
extern void AddPrefsDefaults(void); |
32 |
|
extern void AddPlatformPrefsDefaults(void); |
33 |
|
|
72 |
|
const char *name; // Name of keyword |
73 |
|
prefs_type type; // Type (see above) |
74 |
|
bool multiple; // Can this item occur multiple times (only for TYPE_STRING)? |
75 |
+ |
const char *help; // Help/descriptive text about this item |
76 |
|
}; |
77 |
|
|
78 |
|
// List of common preferences items (those which exist on all platforms) |