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

Comparing BasiliskII/src/include/user_strings.h (file contents):
Revision 1.1 by cebix, 1999-10-03T14:16:26Z vs.
Revision 1.2 by cebix, 1999-10-12T20:00:56Z

# Line 21 | Line 21
21   #ifndef USER_STRINGS_H
22   #define USER_STRINGS_H
23  
24 < // String numbers
24 > // Common string numbers
25   enum {
26          // General messages
27          STR_ABOUT_TEXT1 = 0,
# Line 57 | Line 57 | enum {
57          // Warning messages
58          STR_SMALL_RAM_WARN = 2000,
59          STR_CREATE_VOLUME_WARN,
60 +        STR_VOLUME_IS_MOUNTED_WARN,
61 +        STR_CANNOT_UNMOUNT_WARN,
62  
63          // Preferences window
64          STR_PREFS_TITLE = 3000,
# Line 65 | Line 67 | enum {
67          STR_PREFS_ITEM_START,
68          STR_PREFS_ITEM_ZAP_PRAM,
69          STR_PREFS_ITEM_QUIT,
70 <        STR_PREFS_MENU_FILE_GTK = 3040,
71 <        STR_PREFS_ITEM_START_GTK,
70 <        STR_PREFS_ITEM_ZAP_PRAM_GTK,
71 <        STR_PREFS_ITEM_SEPL_GTK,
72 <        STR_PREFS_ITEM_QUIT_GTK,
73 <        STR_HELP_MENU_GTK,
74 <        STR_HELP_ITEM_ABOUT_GTK,
70 >
71 >        STR_NONE_LAB = 3100,
72  
73          STR_VOLUMES_PANE_TITLE = 3200,  // Volumes pane
74          STR_VOLUMES_CTRL,
# Line 126 | Line 123 | enum {
123          STR_REF_60HZ_LAB,
124          STR_DISPLAY_X_CTRL,
125          STR_DISPLAY_Y_CTRL,
126 +        STR_SIZE_384_LAB,
127 +        STR_SIZE_480_LAB,
128 +        STR_SIZE_512_LAB,
129 +        STR_SIZE_600_LAB,
130 +        STR_SIZE_640_LAB,
131 +        STR_SIZE_768_LAB,
132 +        STR_SIZE_800_LAB,
133 +        STR_SIZE_1024_LAB,
134 +        STR_SIZE_MAX_LAB,
135          STR_COLOR_DEPTH_CTRL,
136          STR_1_BIT_LAB,
137          STR_2_BIT_LAB,
# Line 180 | Line 186 | enum {
186          STR_WINDOW_ITEM_ABOUT,
187          STR_WINDOW_ITEM_REFRESH,
188          STR_WINDOW_ITEM_MOUNT,
189 <        STR_SUSPEND_WINDOW_TITLE,
189 >        STR_SUSPEND_WINDOW_TITLE
190 > };
191  
192 <        // BeOS specific messages
193 <        STR_NO_SHEEP_DRIVER_ERR = 10000,
194 <        STR_SHEEP_UP_ERR,
195 <        STR_NO_KERNEL_DATA_ERR,
189 <        STR_VOLUME_IS_MOUNTED_WARN,
190 <        STR_CANNOT_UNMOUNT_WARN,
191 <        STR_NO_NET_ADDON_WARN,
192 <        STR_NET_CONFIG_MODIFY_WARN,
193 <        STR_NET_ADDON_INIT_FAILED,
194 <        STR_NET_ADDON_CLONE_FAILED,
195 <
196 <        // Unix specific messages
197 <        STR_NO_XSERVER_ERR = 11000,
198 <        STR_NO_XVISUAL_ERR,
199 <        STR_UNSUPP_DEPTH_ERR,
200 <        STR_NO_SHEEP_NET_DRIVER_WARN,
201 <        STR_SHEEP_NET_ATTACH_WARN,
202 <        STR_SCSI_DEVICE_OPEN_WARN,
203 <        STR_SCSI_DEVICE_NOT_SCSI_WARN,
204 <        STR_NO_AUDIO_DEV_WARN,
205 <        STR_AUDIO_FORMAT_WARN,
206 <        STR_KEYCODE_FILE_WARN,
207 <        STR_KEYCODE_VENDOR_WARN,
208 <
209 <        // AmigaOS specific messages
210 <        STR_NO_PREPARE_EMUL_ERR = 12000,
211 <        STR_NO_GADTOOLS_LIB_ERR,
212 <        STR_NO_ASL_LIB_ERR,
213 <        STR_NO_TIMER_DEV_ERR,
214 <        STR_NO_P96_MODE_ERR,
215 <        STR_WRONG_SCREEN_DEPTH_ERR,
216 <        STR_WRONG_SCREEN_FORMAT_ERR,
217 <        STR_NOT_ETHERNET_WARN,
218 <        STR_NO_MULTICAST_WARN,
219 <        STR_NO_GTLAYOUT_LIB_WARN,
220 <        STR_NO_AHI_WARN,
221 <        STR_NO_AHI_CTRL_WARN
192 > // Common and platform-specific string definitions
193 > struct user_string_def {
194 >        int num;
195 >        const char *str;
196   };
197  
198 < extern char *GetString(int num);
198 > extern user_string_def common_strings[];
199 > extern user_string_def platform_strings[];
200 >
201 > // Fetch pointer to string, given the string number
202 > extern const char *GetString(int num);
203  
204   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines