mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
2d0464ddb2
- Get rid of the "include/reactos/resource.h" header file. It contained outdated strings and had no effect on the resource files anymore. The "version.rc" file has the same purpose and does a better job. svn path=/trunk/; revision=31840
14 lines
653 B
Plaintext
14 lines
653 B
Plaintext
#include <windows.h>
|
|
#include "resource.h"
|
|
|
|
IDD_MAIN DIALOG DISCARDABLE 20, 20, 220, 140
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
FONT 8, "MS Sans Serif"
|
|
CAPTION "Select a file"
|
|
BEGIN
|
|
EDITTEXT IDC_DIREDIT, 5, 5, 210, 13, ES_READONLY | ES_LEFT | WS_CHILD | WS_VISIBLE | WS_TABSTOP
|
|
LISTBOX IDC_DIRS, 5, 23, 210, 92, LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | LBS_MULTICOLUMN | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL
|
|
PUSHBUTTON "&OK", IDC_OK, 60, 120, 40, 15, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP
|
|
PUSHBUTTON "&Cancel", IDC_CANCEL, 120, 120, 40, 15, WS_CHILD | WS_VISIBLE | WS_TABSTOP
|
|
END
|