Moved standard syslevel APIs declaration to winbase.h.
[wine] / dlls / serialui / serialui_rc.rc
1 #include "windef.h"
2 #include "winuser.h"
3 #include "serialui.h"
4
5
6 IDD_SERIALUICONFIG DIALOG DISCARDABLE 0, 0, 160, 159
7 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
8 CAPTION "Properties for "
9 FONT 8, "MS Sans Serif"
10 BEGIN
11   LTEXT         "Baud Rate", 0,5,20,55,10
12   COMBOBOX      IDC_BAUD, 60, 20, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
13   LTEXT         "Parity", 0,5,40,55,10
14   COMBOBOX      IDC_PARITY, 60, 40, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
15   LTEXT         "Flow Control", 0,5,60,55,10
16   COMBOBOX      IDC_FLOW, 60, 60, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
17   LTEXT         "Data Bits", 0,5,80,55,10
18   COMBOBOX      IDC_DATA, 60, 80, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
19   LTEXT         "Stop Bits", 0,5,100,55,10
20   COMBOBOX      IDC_STOP, 60, 100, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
21   DEFPUSHBUTTON "OK",     IDOK,30,138,50,14
22   PUSHBUTTON    "Cancel", IDCANCEL,85,138,50,14
23   /* these two buttons are for testing Get/SetDefaultCommConfig */
24   /* PUSHBUTTON    "GetDefault", ID_GETDEFAULT,30,115,50,14 */
25   /* PUSHBUTTON    "SetDefault", ID_SETDEFAULT,85,115,50,14 */
26 END