2b030a13a3c84ff12204fa8ba6087641a078e58e
[reactos.git] / rostests / apitests / user32 / testlist.c
1 #define WIN32_LEAN_AND_MEAN
2 #define __ROS_LONG64__
3 #include <windows.h>
4
5 #define STANDALONE
6 #include "wine/test.h"
7
8 extern void func_AttachThreadInput(void);
9 extern void func_CreateIconFromResourceEx(void);
10 extern void func_DeferWindowPos(void);
11 extern void func_DestroyCursorIcon(void);
12 extern void func_DrawIconEx(void);
13 extern void func_desktop(void);
14 extern void func_GetIconInfo(void);
15 extern void func_GetKeyState(void);
16 extern void func_GetPeekMessage(void);
17 extern void func_GetSystemMetrics(void);
18 extern void func_InitializeLpkHooks(void);
19 extern void func_LoadImage(void);
20 extern void func_RealGetWindowClass(void);
21 extern void func_ScrollDC(void);
22 extern void func_ScrollWindowEx(void);
23 extern void func_SetActiveWindow(void);
24 extern void func_SetCursorPos(void);
25 extern void func_SystemParametersInfo(void);
26 extern void func_TrackMouseEvent(void);
27 extern void func_WndProc(void);
28 extern void func_wsprintf(void);
29
30 const struct test winetest_testlist[] =
31 {
32 { "AttachThreadInput", func_AttachThreadInput },
33 { "CreateIconFromResourceEx", func_CreateIconFromResourceEx },
34 { "DeferWindowPos", func_DeferWindowPos },
35 { "DestroyCursorIcon", func_DestroyCursorIcon },
36 { "DrawIconEx", func_DrawIconEx },
37 { "desktop", func_desktop },
38 { "GetIconInfo", func_GetIconInfo },
39 { "GetKeyState", func_GetKeyState },
40 { "GetPeekMessage", func_GetPeekMessage },
41 { "GetSystemMetrics", func_GetSystemMetrics },
42 { "InitializeLpkHooks", func_InitializeLpkHooks },
43 { "LoadImage", func_LoadImage },
44 { "RealGetWindowClass", func_RealGetWindowClass },
45 { "ScrollDC", func_ScrollDC },
46 { "ScrollWindowEx", func_ScrollWindowEx },
47 { "SetActiveWindow", func_SetActiveWindow },
48 { "SetCursorPos", func_SetCursorPos },
49 { "SystemParametersInfo", func_SystemParametersInfo },
50 { "TrackMouseEvent", func_TrackMouseEvent },
51 { "WndProc", func_WndProc },
52 { "wsprintfApi", func_wsprintf },
53 { 0, 0 }
54 };
55