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 |
|
---|
14 | ICON 1 "Win32kCC.ico"
|
---|
15 | ICON DL_WIN32KCC "Win32kCC.ico"
|
---|
16 |
|
---|
17 | STRINGTABLE
|
---|
18 | BEGIN
|
---|
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."
|
---|
38 | END
|
---|
39 |
|
---|
40 | MESSAGETABLE
|
---|
41 | BEGIN
|
---|
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."
|
---|
47 | END
|
---|
48 |
|
---|
49 |
|
---|
50 | RCINCLUDE "Win32kCC.dlg"
|
---|