[USER32_APITEST]

- Rename CreateWindowEx test to SetParent since that's what it tests

svn path=/trunk/; revision=67070
This commit is contained in:
Thomas Faber 2015-04-06 06:34:04 +00:00
parent 06b8f6ed65
commit 3233f5f8b3
3 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,6 @@ list(APPEND SOURCE
AttachThreadInput.c AttachThreadInput.c
helper.c helper.c
CreateIconFromResourceEx.c CreateIconFromResourceEx.c
CreateWindowEx.c
DeferWindowPos.c DeferWindowPos.c
DestroyCursorIcon.c DestroyCursorIcon.c
DrawIconEx.c DrawIconEx.c
@ -24,6 +23,7 @@ list(APPEND SOURCE
SendMessageTimeout.c SendMessageTimeout.c
SetActiveWindow.c SetActiveWindow.c
SetCursorPos.c SetCursorPos.c
SetParent.c
SystemParametersInfo.c SystemParametersInfo.c
TrackMouseEvent.c TrackMouseEvent.c
WndProc.c WndProc.c

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS API tests * PROJECT: ReactOS API tests
* LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory * LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
* PURPOSE: Test for CreateWindow stuff * PURPOSE: Test for SetParent
* PROGRAMMERS: Thomas Faber <thomas.faber@reactos.org> * PROGRAMMERS: Thomas Faber <thomas.faber@reactos.org>
*/ */
@ -114,7 +114,7 @@ WndProc(
} }
START_TEST(CreateWindowEx) START_TEST(SetParent)
{ {
HWND hWnd; HWND hWnd;
MSG msg; MSG msg;

View file

@ -5,7 +5,6 @@
extern void func_AttachThreadInput(void); extern void func_AttachThreadInput(void);
extern void func_CreateIconFromResourceEx(void); extern void func_CreateIconFromResourceEx(void);
extern void func_CreateWindowEx(void);
extern void func_DeferWindowPos(void); extern void func_DeferWindowPos(void);
extern void func_DestroyCursorIcon(void); extern void func_DestroyCursorIcon(void);
extern void func_DrawIconEx(void); extern void func_DrawIconEx(void);
@ -26,6 +25,7 @@ extern void func_ScrollWindowEx(void);
extern void func_SendMessageTimeout(void); extern void func_SendMessageTimeout(void);
extern void func_SetActiveWindow(void); extern void func_SetActiveWindow(void);
extern void func_SetCursorPos(void); extern void func_SetCursorPos(void);
extern void func_SetParent(void);
extern void func_SystemParametersInfo(void); extern void func_SystemParametersInfo(void);
extern void func_TrackMouseEvent(void); extern void func_TrackMouseEvent(void);
extern void func_WndProc(void); extern void func_WndProc(void);
@ -35,7 +35,6 @@ const struct test winetest_testlist[] =
{ {
{ "AttachThreadInput", func_AttachThreadInput }, { "AttachThreadInput", func_AttachThreadInput },
{ "CreateIconFromResourceEx", func_CreateIconFromResourceEx }, { "CreateIconFromResourceEx", func_CreateIconFromResourceEx },
{ "CreateWindowEx", func_CreateWindowEx },
{ "DeferWindowPos", func_DeferWindowPos }, { "DeferWindowPos", func_DeferWindowPos },
{ "DestroyCursorIcon", func_DestroyCursorIcon }, { "DestroyCursorIcon", func_DestroyCursorIcon },
{ "DrawIconEx", func_DrawIconEx }, { "DrawIconEx", func_DrawIconEx },
@ -56,6 +55,7 @@ const struct test winetest_testlist[] =
{ "SendMessageTimeout", func_SendMessageTimeout }, { "SendMessageTimeout", func_SendMessageTimeout },
{ "SetActiveWindow", func_SetActiveWindow }, { "SetActiveWindow", func_SetActiveWindow },
{ "SetCursorPos", func_SetCursorPos }, { "SetCursorPos", func_SetCursorPos },
{ "SetParent", func_SetParent },
{ "SystemParametersInfo", func_SystemParametersInfo }, { "SystemParametersInfo", func_SystemParametersInfo },
{ "TrackMouseEvent", func_TrackMouseEvent }, { "TrackMouseEvent", func_TrackMouseEvent },
{ "WndProc", func_WndProc }, { "WndProc", func_WndProc },