[USBSTOR]
[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_CreateIconFromResourceEx(void);
8 extern void func_DeferWindowPos(void);
9 extern void func_DestroyCursorIcon(void);
10 extern void func_DrawIconEx(void);
11 extern void func_desktop(void);
12 extern void func_EnumDisplaySettings(void);
13 extern void func_GetIconInfo(void);
14 extern void func_GetKeyState(void);
15 extern void func_GetPeekMessage(void);
16 extern void func_GetSystemMetrics(void);
17 extern void func_InitializeLpkHooks(void);
18 extern void func_LoadImage(void);
19 extern void func_LookupIconIdFromDirectoryEx(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 { "EnumDisplaySettings", func_EnumDisplaySettings },
39 { "GetIconInfo", func_GetIconInfo },
40 { "GetKeyState", func_GetKeyState },
41 { "GetPeekMessage", func_GetPeekMessage },
42 { "GetSystemMetrics", func_GetSystemMetrics },
43 { "InitializeLpkHooks", func_InitializeLpkHooks },
44 { "LoadImage", func_LoadImage },
45 { "LookupIconIdFromDirectoryEx", func_LookupIconIdFromDirectoryEx },
46 { "RealGetWindowClass", func_RealGetWindowClass },
47 { "ScrollDC", func_ScrollDC },
48 { "ScrollWindowEx", func_ScrollWindowEx },
49 { "SetActiveWindow", func_SetActiveWindow },
50 { "SetCursorPos", func_SetCursorPos },
51 { "SystemParametersInfo", func_SystemParametersInfo },
52 { "TrackMouseEvent", func_TrackMouseEvent },
53 { "WndProc", func_WndProc },
54 { "wsprintfApi", func_wsprintf },
55 { 0, 0 }
56 };
57