ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/include/prefs.h
(Generate patch)

Comparing BasiliskII/src/include/prefs.h (file contents):
Revision 1.1.1.1 by cebix, 1999-10-03T14:16:26Z vs.
Revision 1.12 by asvitkine, 2009-07-23T19:19:13Z

# Line 1 | Line 1
1   /*
2   *  prefs.h - Preferences handling
3   *
4 < *  Basilisk II (C) 1997-1999 Christian Bauer
4 > *  Basilisk II (C) 1997-2008 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 23 | Line 23
23  
24   #include <stdio.h>
25  
26 < extern void PrefsInit(void);
26 > extern void PrefsInit(const char *vmdir, 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  
34   // Preferences loading/saving
35 < extern void LoadPrefs(void);
35 > extern void LoadPrefs(const char *vmdir);
36   extern void SavePrefs(void);
37  
38   extern void LoadPrefsFromStream(FILE *f);
# Line 38 | Line 41 | extern void SavePrefsToStream(FILE *f);
41   // Public preferences access functions
42   extern void PrefsAddString(const char *name, const char *s);
43   extern void PrefsAddBool(const char *name, bool b);
41 extern void PrefsAddInt16(const char *name, int16 val);
44   extern void PrefsAddInt32(const char *name, int32 val);
45  
46   extern void PrefsReplaceString(const char *name, const char *s, int index = 0);
47   extern void PrefsReplaceBool(const char *name, bool b);
46 extern void PrefsReplaceInt16(const char *name, int16 val);
48   extern void PrefsReplaceInt32(const char *name, int32 val);
49  
50   extern const char *PrefsFindString(const char *name, int index = 0);
51   extern bool PrefsFindBool(const char *name);
51 extern int16 PrefsFindInt16(const char *name);
52   extern int32 PrefsFindInt32(const char *name);
53  
54   extern void PrefsRemoveItem(const char *name, int index = 0);
55  
56 + #ifdef SHEEPSHAVER
57 + // Platform specific functions:
58 + extern void prefs_init();
59 + extern void prefs_exit();
60 + #endif
61  
62   /*
63   *  Definition of preferences items
# Line 62 | Line 67 | extern void PrefsRemoveItem(const char *
67   enum prefs_type {
68          TYPE_STRING,            // char[]
69          TYPE_BOOLEAN,           // bool
65        TYPE_INT16,                     // int16
70          TYPE_INT32,                     // int32
71          TYPE_ANY,                       // Wildcard for find_node
72          TYPE_END = TYPE_ANY     // Terminator for prefs_desc list
# Line 73 | Line 77 | struct prefs_desc {
77          const char *name;       // Name of keyword
78          prefs_type type;        // Type (see above)
79          bool multiple;          // Can this item occur multiple times (only for TYPE_STRING)?
80 +        const char *help;       // Help/descriptive text about this item
81   };
82  
83   // List of common preferences items (those which exist on all platforms)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines