1 #define __ROS_LONG64__
2 
3 #define STANDALONE
4 #include <apitest.h>
5 
6 extern void func_AttachThreadInput(void);
7 extern void func_CloseWindow(void);
8 extern void func_CreateDialog(void);
9 extern void func_CreateIconFromResourceEx(void);
10 extern void func_CreateWindowEx(void);
11 extern void func_DeferWindowPos(void);
12 extern void func_DestroyCursorIcon(void);
13 extern void func_DM_REPOSITION(void);
14 extern void func_DrawIconEx(void);
15 extern void func_DrawText(void);
16 extern void func_desktop(void);
17 extern void func_EmptyClipboard(void);
18 extern void func_EnumDisplaySettings(void);
19 extern void func_GetDCEx(void);
20 extern void func_GetIconInfo(void);
21 extern void func_GetKeyState(void);
22 extern void func_GetMessageTime(void);
23 extern void func_GetPeekMessage(void);
24 extern void func_GetSystemMetrics(void);
25 extern void func_GetUserObjectInformation(void);
26 extern void func_GetWindowPlacement(void);
27 extern void func_InitializeLpkHooks(void);
28 extern void func_LoadImage(void);
29 extern void func_LookupIconIdFromDirectoryEx(void);
30 extern void func_MessageStateAnalyzer(void);
31 extern void func_NextDlgItem(void);
32 extern void func_PrivateExtractIcons(void);
33 extern void func_RealGetWindowClass(void);
34 extern void func_RedrawWindow(void);
35 extern void func_RegisterHotKey(void);
36 extern void func_RegisterClassEx(void);
37 extern void func_ScrollBarWndExtra(void);
38 extern void func_ScrollDC(void);
39 extern void func_ScrollWindowEx(void);
40 extern void func_SendMessageTimeout(void);
41 extern void func_SetActiveWindow(void);
42 extern void func_SetCursorPos(void);
43 extern void func_SetParent(void);
44 extern void func_SetProp(void);
45 extern void func_SetScrollInfo(void);
46 extern void func_SetScrollRange(void);
47 extern void func_SwitchToThisWindow(void);
48 extern void func_SystemParametersInfo(void);
49 extern void func_TrackMouseEvent(void);
50 extern void func_WndProc(void);
51 extern void func_wsprintf(void);
52 
53 const struct test winetest_testlist[] =
54 {
55     { "AttachThreadInput", func_AttachThreadInput },
56     { "CloseWindow", func_CloseWindow },
57     { "CreateDialog", func_CreateDialog },
58     { "CreateIconFromResourceEx", func_CreateIconFromResourceEx },
59     { "CreateWindowEx", func_CreateWindowEx },
60     { "DeferWindowPos", func_DeferWindowPos },
61     { "DestroyCursorIcon", func_DestroyCursorIcon },
62     { "DM_REPOSITION", func_DM_REPOSITION },
63     { "DrawIconEx", func_DrawIconEx },
64     { "DrawText", func_DrawText },
65     { "desktop", func_desktop },
66     { "EmptyClipboard", func_EmptyClipboard },
67     { "EnumDisplaySettings", func_EnumDisplaySettings },
68     { "GetDCEx", func_GetDCEx },
69     { "GetIconInfo", func_GetIconInfo },
70     { "GetKeyState", func_GetKeyState },
71     { "GetMessageTime", func_GetMessageTime },
72     { "GetPeekMessage", func_GetPeekMessage },
73     { "GetSystemMetrics", func_GetSystemMetrics },
74     { "GetUserObjectInformation", func_GetUserObjectInformation },
75     { "GetWindowPlacement", func_GetWindowPlacement },
76     { "InitializeLpkHooks", func_InitializeLpkHooks },
77     { "LoadImage", func_LoadImage },
78     { "LookupIconIdFromDirectoryEx", func_LookupIconIdFromDirectoryEx },
79     { "MessageStateAnalyzer", func_MessageStateAnalyzer },
80     { "NextDlgItem", func_NextDlgItem },
81     { "PrivateExtractIcons", func_PrivateExtractIcons },
82     { "RealGetWindowClass", func_RealGetWindowClass },
83     { "RedrawWindow", func_RedrawWindow },
84     { "RegisterHotKey", func_RegisterHotKey },
85     { "RegisterClassEx", func_RegisterClassEx },
86     { "ScrollBarWndExtra", func_ScrollBarWndExtra },
87     { "ScrollDC", func_ScrollDC },
88     { "ScrollWindowEx", func_ScrollWindowEx },
89     { "SendMessageTimeout", func_SendMessageTimeout },
90     { "SetActiveWindow", func_SetActiveWindow },
91     { "SetCursorPos", func_SetCursorPos },
92     { "SetParent", func_SetParent },
93     { "SetProp", func_SetProp },
94     { "SetScrollInfo", func_SetScrollInfo },
95     { "SetScrollRange", func_SetScrollRange },
96     { "SwitchToThisWindow", func_SwitchToThisWindow },
97     { "SystemParametersInfo", func_SystemParametersInfo },
98     { "TrackMouseEvent", func_TrackMouseEvent },
99     { "WndProc", func_WndProc },
100     { "wsprintfApi", func_wsprintf },
101     { 0, 0 }
102 };
103 
104