source: trunk/src/win32k/utils/Win32kCC.rc@ 5087

Last change on this file since 5087 was 5051, checked in by bird, 25 years ago

Added new option for the All-in-one-object fix.

File size: 2.0 KB
Line 
1/* $Id: Win32kCC.rc,v 1.5 2001-02-02 08:41:31 bird Exp $
2 *
3 * Resource File for Win32k Control Center.
4 *
5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11#include <os2.h>
12#include "Win32kCC.h"
13
14ICON 1 "Win32kCC.ico"
15ICON DL_WIN32KCC "Win32kCC.ico"
16
17STRINGTABLE
18BEGIN
19 /*
20 * Error strings (input for sprintf!).
21 */
22 IDS_ERR_DIALOGLOAD, "Failed to load dialog.\rdialogid = %d\rlasterr = 0x%x\rmsg = %s"
23 IDS_ERR_MALLOC_FAILED, "Malloc failed. (file %s; line %d; function %s)"
24 IDS_ERR_SET_INSTACEDATA, "Call to WinSetWindowPtr failed.\rlasterror = %d\rmsg = %s"
25 IDS_ERR_WIN32K_NOT_LOADED, "Win32k.sys is not loaded.\rTo fix it you'll have to add it to your config.sys. (see the Odin32 readme.txt for more details.)"
26 IDS_ERR_WIN32K_OPEN_FAILED, "Failed to open Win32k.sys. (rc=0x%x)"
27 IDS_ERR_QUERYOPTIONSTATUS, "Failed to get option and status data from Win32k.sys. (rc=0x%x)"
28 IDS_ERR_NO_COM_RADIOBUTTON, "Internal error. No COM port is selected!"
29 IDS_ERR_NO_PE_RADIOBUTTON, "Internal error. No PE Loader mode is selected!"
30 IDS_ERR_NO_PE_ONEOBJECT, "Internal error. Invalid All-In-One-Object state!"
31 IDS_ERR_INVALID_INFOLEVEL, "Invalid infolevel."
32 IDS_ERR_INVALID_MAXHEAPSIZE,"Invalid heapsize."
33 IDS_ERR_SETPOPTIONS, "Error occured in win32k while changing the options. (rc=0x%x)"
34 IDS_ERR_FOPEN_FAILED, "Failed to open file %s."
35 IDS_FSIZE_FAILED, "Failed to determin size of file %s."
36 IDS_MALLOC_FAILED, "Error! malloc or calloc failed to allocate %d bytes of memory."
37 IDS_FWRITE_FAILED, "Error! failed to write to file %s."
38END
39
40MESSAGETABLE
41BEGIN
42 /*
43 * Messages.
44 */
45 IDM_INFO_DIRTY, "You have changed the settings but not applied them. Sure you wan't to exit?"
46 IDM_CONFIGSYS_UPDATED, "Config.sys was successfully updated."
47END
48
49
50RCINCLUDE "Win32kCC.dlg"
Note: See TracBrowser for help on using the repository browser.