Initial revision
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sat, 21 Aug 1993 02:43:09 +0000 (02:43 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sat, 21 Aug 1993 02:43:09 +0000 (02:43 +0000)
v7/src/microcode/ntutl/ntdialog.dlg [new file with mode: 0644]
v7/src/microcode/ntutl/ntdialog.h [new file with mode: 0644]

diff --git a/v7/src/microcode/ntutl/ntdialog.dlg b/v7/src/microcode/ntutl/ntdialog.dlg
new file mode 100644 (file)
index 0000000..3fe4895
--- /dev/null
@@ -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 (file)
index 0000000..22e7daf
--- /dev/null
@@ -0,0 +1,5 @@
+/* -*- C -*- */
+
+#define SCHEME_INPUT                700
+#define SCHEME_INPUT_TEXT           701
+#define SCHEME_INPUT_PROMPT         702