42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
/* Unit test suite for resources.
|
|
*
|
|
* Copyright 2004 Ferenc Wagner
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "windef.h"
|
|
#include "winuser.h"
|
|
|
|
STRINGTABLE {
|
|
0 "String resource"
|
|
}
|
|
|
|
TEST_DIALOG DIALOG DISCARDABLE 0, 0, 60, 30
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
|
CAPTION "Test dialog"
|
|
FONT 8, "MS Sans Serif"
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK", IDOK,4,4,50,14, WS_TABSTOP | WS_GROUP
|
|
END
|
|
|
|
CLASS_TEST_DIALOG DIALOG DISCARDABLE 0, 0, 91, 28
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "CreateDialogParams Test"
|
|
CLASS "TestDialog"
|
|
FONT 8, "System"
|
|
BEGIN
|
|
END
|