Commit 9f548bd9 authored by Julius Schwartzenberg's avatar Julius Schwartzenberg Committed by Alexandre Julliard

user32/tests: Test extra value of standard dialog and edit classes.

parent 8e899e00
......@@ -831,10 +831,42 @@ static void CreateDialogParamTest(HINSTANCE hInstance)
}
}
static const struct
{
const char name[9];
int value;
int badvalue;
} extra_values[] =
{
{"#32770",30,30}, /* Dialog */
#ifdef _WIN64
{"Edit",8,8},
#else
{"Edit",6,8}, /* Windows XP 64-bit returns 8 also to 32-bit applications */
#endif
};
static void test_extra_values(void)
{
int i;
for(i=0; i< sizeof(extra_values)/sizeof(extra_values[0]); i++)
{
WNDCLASSEX wcx;
BOOL ret = GetClassInfoEx(NULL,extra_values[i].name,&wcx);
ok( ret, "GetClassInfo (0) failed for global class %s\n", extra_values[i].name);
if (!ret) continue;
ok(extra_values[i].value == wcx.cbWndExtra || broken(extra_values[i].badvalue == wcx.cbWndExtra),
"expected %d, got %d\n", extra_values[i].value, wcx.cbWndExtra);
}
}
START_TEST(class)
{
HANDLE hInstance = GetModuleHandleA( NULL );
test_extra_values();
if (!GetModuleHandleW(0))
{
trace("Class test is incompatible with Win9x implementation, skipping\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment