mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 01:14:55 -06:00
16 lines
334 B
Plaintext
16 lines
334 B
Plaintext
#include "EditDialogRes.h"
|
|
#include "../../GuiCommon.rc"
|
|
|
|
#define xc 320
|
|
#define yc 240
|
|
|
|
IDD_EDIT_DLG DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT
|
|
CAPTION "Edit"
|
|
{
|
|
// OK_CANCEL
|
|
MY_BUTTON__CLOSE
|
|
|
|
EDITTEXT IDE_EDIT, m, m, xc, yc - bys - m,
|
|
ES_MULTILINE | ES_READONLY | WS_VSCROLL | WS_HSCROLL | ES_WANTRETURN
|
|
}
|