218eacd32298148c10ee23a591540f262f505ceb
[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_DeferWindowPos(void);
10 extern void func_DestroyCursorIcon(void);
11 extern void func_DrawIconEx(void);
12 extern void func_desktop(void);
13 extern void func_EnumDisplaySettings(void);
14 extern void func_GetDCEx(void);
15 extern void func_GetIconInfo(void);
16 extern void func_GetKeyState(void);
17 extern void func_GetPeekMessage(void);
18 extern void func_GetSystemMetrics(void);
19 extern void func_GetUserObjectInformation(void);
20 extern void func_InitializeLpkHooks(void);
21 extern void func_LoadImage(void);
22 extern void func_LookupIconIdFromDirectoryEx(void);
23 extern void func_RealGetWindowClass(void);
24 extern void func_ScrollDC(void);
25 extern void func_ScrollWindowEx(void);
26 extern void func_SendMessageTimeout(void);
27 extern void func_SetActiveWindow(void);
28 extern void func_SetCursorPos(void);
29 extern void func_SetParent(void);
30 extern void func_SystemParametersInfo(void);
31 extern void func_TrackMouseEvent(void);
32 extern void func_WndProc(void);
33 extern void func_wsprintf(void);
34
35 const struct test winetest_testlist[] =
36 {
37 { "AttachThreadInput", func_AttachThreadInput },
38 { "CreateDialog", func_CreateDialog },
39 { "CreateIconFromResourceEx", func_CreateIconFromResourceEx },
40 { "DeferWindowPos", func_DeferWindowPos },
41 { "DestroyCursorIcon", func_DestroyCursorIcon },
42 { "DrawIconEx", func_DrawIconEx },
43 { "desktop", func_desktop },
44 { "EnumDisplaySettings", func_EnumDisplaySettings },
45 { "GetDCEx", func_GetDCEx },
46 { "GetIconInfo", func_GetIconInfo },
47 { "GetKeyState", func_GetKeyState },
48 { "GetPeekMessage", func_GetPeekMessage },
49 { "GetSystemMetrics", func_GetSystemMetrics },
50 { "GetUserObjectInformation", func_GetUserObjectInformation },
51 { "InitializeLpkHooks", func_InitializeLpkHooks },
52 { "LoadImage", func_LoadImage },
53 { "LookupIconIdFromDirectoryEx", func_LookupIconIdFromDirectoryEx },
54 { "RealGetWindowClass", func_RealGetWindowClass },
55 { "ScrollDC", func_ScrollDC },
56 { "ScrollWindowEx", func_ScrollWindowEx },
57 { "SendMessageTimeout", func_SendMessageTimeout },
58 { "SetActiveWindow", func_SetActiveWindow },
59 { "SetCursorPos", func_SetCursorPos },
60 { "SetParent", func_SetParent },
61 { "SystemParametersInfo", func_SystemParametersInfo },
62 { "TrackMouseEvent", func_TrackMouseEvent },
63 { "WndProc", func_WndProc },
64 { "wsprintfApi", func_wsprintf },
65 { 0, 0 }
66 };
67