mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
f499a92d44
- Add a test for CreateDialog. Patch by Andreas Maier. ROSTESTS-163 #resolve svn path=/trunk/; revision=67213
15 lines
284 B
Text
15 lines
284 B
Text
#include <windef.h>
|
|
#include "resource.h"
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
IDI_TEST ICON "test.ico"
|
|
TESTCURSOR CURSOR "test.cur"
|
|
|
|
TESTDIALOG DIALOG 0,0, 200,200
|
|
CLASS "TestDialogClass"
|
|
CAPTION "Testdialog"
|
|
FONT 8, "MS Shell Dlg"
|
|
{
|
|
PUSHBUTTON "a button", 1, 5,5, 100,20
|
|
}
|