mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
938 B
49 lines
938 B
//---------------------------------------------------------------------------
|
|
// STRINGS.C
|
|
//
|
|
// Defines strings used by the import/export engine.
|
|
//---------------------------------------------------------------------------
|
|
#include <windows.h>
|
|
#include <port1632.h>
|
|
|
|
// Parser errors
|
|
LPSTR psrstrs[] = {
|
|
"Syntax error",
|
|
"Cannot open file",
|
|
"Parser out of memory",
|
|
"Unexpected EOF",
|
|
"Token too long",
|
|
"String too long",
|
|
"Comma expected",
|
|
"Number expected",
|
|
"EOL expected",
|
|
"No Closing (\")",
|
|
""};
|
|
|
|
// Reserved words (tokens)
|
|
LPSTR kwds[] = {
|
|
"#32770",
|
|
"BEGIN",
|
|
"BUTTON",
|
|
"CAPTION",
|
|
"CHECKED",
|
|
"COMBOBOX",
|
|
"DIALOG",
|
|
"EDIT",
|
|
"END",
|
|
"GRAYED",
|
|
"GROUPBOX",
|
|
"HELP",
|
|
"ICON",
|
|
"INACTIVE",
|
|
"LISTBOX",
|
|
"MENU",
|
|
"MENUBARBREAK",
|
|
"MENUBREAK",
|
|
"MENUITEM",
|
|
"POPUP",
|
|
"SCROLLBAR",
|
|
"SEPARATOR",
|
|
"STATIC",
|
|
"STYLE",
|
|
""};
|