33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
/*
|
|
* Copyright (C) 2004 Rildo Pragana, David Essex.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "wprog.h"
|
|
|
|
IDN_DIALOG DIALOG 120, 120, 200, 50
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
CAPTION IDCH_DIALOG_CAPTION
|
|
FONT 8, "MS Sans Serif"
|
|
BEGIN
|
|
ICON IDI_EXCLAMATION, -1, 6, 6, 16, 16
|
|
LTEXT IDCH_DIALOG_MSG, -1, 40, 10, 124, 28
|
|
PUSHBUTTON "Yes", IDOK, 37, 28, 60, 14
|
|
PUSHBUTTON "No", IDCANCEL, 103, 28, 60, 14
|
|
END
|