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