ab6ce14498e9bf5489c505894af122cdddb21dca
[reactos.git] / rostests / apitests / user32 / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_AttachThreadInput(void);
7 extern void func_CreateDialog(void);
8 extern void func_CreateIconFromResourceEx(void);
9 extern void func_CreateWindowEx(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_EnumDisplaySettings(void);
15 extern void func_GetDCEx(void);
16 extern void func_GetIconInfo(void);
17 extern void func_GetKeyState(void);
18 extern void func_GetPeekMessage(void);
19 extern void func_GetSystemMetrics(void);
20 extern void func_GetUserObjectInformation(void);
21 extern void func_GetWindowPlacement(void);
22 extern void func_InitializeLpkHooks(void);
23 extern void func_LoadImage(void);
24 extern void func_LookupIconIdFromDirectoryEx(void);
25 extern void func_RealGetWindowClass(void);
26 extern void func_RegisterHotKey(void);
27 extern void func_ScrollDC(void);
28 extern void func_ScrollWindowEx(void);
29 extern void func_SendMessageTimeout(void);
30 extern void func_SetActiveWindow(void);
31 extern void func_SetCursorPos(void);
32 extern void func_SetParent(void);
33 extern void func_SetProp(void);
34 extern void func_SetScrollInfo(void);
35 extern void func_SystemParametersInfo(void);
36 extern void func_TrackMouseEvent(void);
37 extern void func_WndProc(void);
38 extern void func_wsprintf(void);
39
40 const struct test winetest_testlist[] =
41 {
42 { "AttachThreadInput", func_AttachThreadInput },
43 { "CreateDialog", func_CreateDialog },
44 { "CreateIconFromResourceEx", func_CreateIconFromResourceEx },
45 { "CreateWindowEx", func_CreateWindowEx },
46 { "DeferWindowPos", func_DeferWindowPos },
47 { "DestroyCursorIcon", func_DestroyCursorIcon },
48 { "DrawIconEx", func_DrawIconEx },
49 { "desktop", func_desktop },
50 { "EnumDisplaySettings", func_EnumDisplaySettings },
51 { "GetDCEx", func_GetDCEx },
52 { "GetIconInfo", func_GetIconInfo },
53 { "GetKeyState", func_GetKeyState },
54 { "GetPeekMessage", func_GetPeekMessage },
55 { "GetSystemMetrics", func_GetSystemMetrics },
56 { "GetUserObjectInformation", func_GetUserObjectInformation },
57 { "GetWindowPlacement", func_GetWindowPlacement },
58 { "InitializeLpkHooks", func_InitializeLpkHooks },
59 { "LoadImage", func_LoadImage },
60 { "LookupIconIdFromDirectoryEx", func_LookupIconIdFromDirectoryEx },
61 { "RealGetWindowClass", func_RealGetWindowClass },
62 { "RegisterHotKey", func_RegisterHotKey },
63 { "ScrollDC", func_ScrollDC },
64 { "ScrollWindowEx", func_ScrollWindowEx },
65 { "SendMessageTimeout", func_SendMessageTimeout },
66 { "SetActiveWindow", func_SetActiveWindow },
67 { "SetCursorPos", func_SetCursorPos },
68 { "SetParent", func_SetParent },
69 { "SetProp", func_SetProp },
70 { "SetScrollInfo", func_SetScrollInfo },
71 { "SystemParametersInfo", func_SystemParametersInfo },
72 { "TrackMouseEvent", func_TrackMouseEvent },
73 { "WndProc", func_WndProc },
74 { "wsprintfApi", func_wsprintf },
75 { 0, 0 }
76 };
77