From 3a1e822701ab9defbdbeae0099cdd529b5e87405 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Sat, 21 Aug 1993 02:43:09 +0000 Subject: [PATCH] Initial revision --- v7/src/microcode/ntutl/ntdialog.dlg | 14 ++++++++++++++ v7/src/microcode/ntutl/ntdialog.h | 5 +++++ 2 files changed, 19 insertions(+) create mode 100644 v7/src/microcode/ntutl/ntdialog.dlg create mode 100644 v7/src/microcode/ntutl/ntdialog.h diff --git a/v7/src/microcode/ntutl/ntdialog.dlg b/v7/src/microcode/ntutl/ntdialog.dlg new file mode 100644 index 000000000..3fe489594 --- /dev/null +++ b/v7/src/microcode/ntutl/ntdialog.dlg @@ -0,0 +1,14 @@ +1 DLGINCLUDE "ntdialog.H" + +SCHEME_INPUT DIALOG 2, 18, 141, 71 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU +CAPTION "Scheme Input" +FONT 8, "MS Sans Serif" +BEGIN + EDITTEXT SCHEME_INPUT_TEXT, 13, 31, 115, 15, ES_AUTOHSCROLL + CTEXT "Type the input to Scheme:", SCHEME_INPUT_PROMPT, 24, 9, + 92, 15 + PUSHBUTTON "OK", IDOK, 25, 50, 40, 14 + PUSHBUTTON "Cancel", IDCANCEL, 77, 50, 40, 14 +END diff --git a/v7/src/microcode/ntutl/ntdialog.h b/v7/src/microcode/ntutl/ntdialog.h new file mode 100644 index 000000000..22e7daf65 --- /dev/null +++ b/v7/src/microcode/ntutl/ntdialog.h @@ -0,0 +1,5 @@ +/* -*- C -*- */ + +#define SCHEME_INPUT 700 +#define SCHEME_INPUT_TEXT 701 +#define SCHEME_INPUT_PROMPT 702 -- 2.25.1