1 #define __ROS_LONG64__ 2 3 #define STANDALONE 4 #include <apitest.h> 5 6 extern void func_AttachThreadInput(void); 7 extern void func_CharFuncs(void); 8 extern void func_CloseWindow(void); 9 extern void func_CopyImage(void); 10 extern void func_CreateDialog(void); 11 extern void func_CreateIconFromResourceEx(void); 12 extern void func_CreateWindowEx(void); 13 extern void func_DeferWindowPos(void); 14 extern void func_DestroyCursorIcon(void); 15 extern void func_DM_REPOSITION(void); 16 extern void func_DrawIconEx(void); 17 extern void func_DrawText(void); 18 extern void func_desktop(void); 19 extern void func_EmptyClipboard(void); 20 extern void func_EnumDisplaySettings(void); 21 extern void func_GetClassInfo(void); 22 extern void func_GetDCEx(void); 23 extern void func_GetIconInfo(void); 24 extern void func_GetKeyState(void); 25 extern void func_GetMessageTime(void); 26 extern void func_GetPeekMessage(void); 27 extern void func_GetSetWindowInt(void); 28 extern void func_GetSystemMetrics(void); 29 extern void func_GetUserObjectInformation(void); 30 extern void func_GetWindowPlacement(void); 31 extern void func_GW_ENABLEDPOPUP(void); 32 extern void func_InitializeLpkHooks(void); 33 extern void func_KbdLayout(void); 34 extern void func_keybd_event(void); 35 extern void func_LoadImage(void); 36 extern void func_LoadImageGCC(void); 37 extern void func_LookupIconIdFromDirectoryEx(void); 38 extern void func_MessageStateAnalyzer(void); 39 extern void func_NextDlgItem(void); 40 extern void func_PrivateExtractIcons(void); 41 extern void func_RealGetWindowClass(void); 42 extern void func_RedrawWindow(void); 43 extern void func_RegisterHotKey(void); 44 extern void func_RegisterClassEx(void); 45 extern void func_ScrollBarRedraw(void); 46 extern void func_ScrollBarWndExtra(void); 47 extern void func_ScrollDC(void); 48 extern void func_ScrollWindowEx(void); 49 extern void func_SendMessageTimeout(void); 50 extern void func_SetActiveWindow(void); 51 extern void func_SetCursorPos(void); 52 extern void func_SetFocus(void); 53 extern void func_SetParent(void); 54 extern void func_SetProp(void); 55 extern void func_SetScrollInfo(void); 56 extern void func_SetScrollRange(void); 57 extern void func_SetWindowPlacement(void); 58 extern void func_ShowWindow(void); 59 extern void func_SwitchToThisWindow(void); 60 extern void func_SystemParametersInfo(void); 61 extern void func_SystemMenu(void); 62 extern void func_TrackMouseEvent(void); 63 extern void func_VirtualKey(void); 64 extern void func_WndProc(void); 65 extern void func_wsprintf(void); 66 67 const struct test winetest_testlist[] = 68 { 69 { "AttachThreadInput", func_AttachThreadInput }, 70 { "CharFuncs", func_CharFuncs }, 71 { "CloseWindow", func_CloseWindow }, 72 { "CopyImage", func_CopyImage }, 73 { "CreateDialog", func_CreateDialog }, 74 { "CreateIconFromResourceEx", func_CreateIconFromResourceEx }, 75 { "CreateWindowEx", func_CreateWindowEx }, 76 { "DeferWindowPos", func_DeferWindowPos }, 77 { "DestroyCursorIcon", func_DestroyCursorIcon }, 78 { "DM_REPOSITION", func_DM_REPOSITION }, 79 { "DrawIconEx", func_DrawIconEx }, 80 { "DrawText", func_DrawText }, 81 { "desktop", func_desktop }, 82 { "EmptyClipboard", func_EmptyClipboard }, 83 { "EnumDisplaySettings", func_EnumDisplaySettings }, 84 { "GetClassInfo", func_GetClassInfo }, 85 { "GetDCEx", func_GetDCEx }, 86 { "GetIconInfo", func_GetIconInfo }, 87 { "GetKeyState", func_GetKeyState }, 88 { "GetMessageTime", func_GetMessageTime }, 89 { "GetPeekMessage", func_GetPeekMessage }, 90 { "GetSetWindowInt", func_GetSetWindowInt }, 91 { "GetSystemMetrics", func_GetSystemMetrics }, 92 { "GetUserObjectInformation", func_GetUserObjectInformation }, 93 { "GetWindowPlacement", func_GetWindowPlacement }, 94 { "GW_ENABLEDPOPUP", func_GW_ENABLEDPOPUP }, 95 { "InitializeLpkHooks", func_InitializeLpkHooks }, 96 { "KbdLayout", func_KbdLayout }, 97 { "keybd_event", func_keybd_event }, 98 { "LoadImage", func_LoadImage }, 99 { "LoadImageGCC", func_LoadImageGCC }, 100 { "LookupIconIdFromDirectoryEx", func_LookupIconIdFromDirectoryEx }, 101 { "MessageStateAnalyzer", func_MessageStateAnalyzer }, 102 { "NextDlgItem", func_NextDlgItem }, 103 { "PrivateExtractIcons", func_PrivateExtractIcons }, 104 { "RealGetWindowClass", func_RealGetWindowClass }, 105 { "RedrawWindow", func_RedrawWindow }, 106 { "RegisterHotKey", func_RegisterHotKey }, 107 { "RegisterClassEx", func_RegisterClassEx }, 108 { "ScrollBarRedraw", func_ScrollBarRedraw }, 109 { "ScrollBarWndExtra", func_ScrollBarWndExtra }, 110 { "ScrollDC", func_ScrollDC }, 111 { "ScrollWindowEx", func_ScrollWindowEx }, 112 { "SendMessageTimeout", func_SendMessageTimeout }, 113 { "SetActiveWindow", func_SetActiveWindow }, 114 { "SetCursorPos", func_SetCursorPos }, 115 { "SetFocus", func_SetFocus }, 116 { "SetParent", func_SetParent }, 117 { "SetProp", func_SetProp }, 118 { "SetScrollInfo", func_SetScrollInfo }, 119 { "SetScrollRange", func_SetScrollRange }, 120 { "SetWindowPlacement", func_SetWindowPlacement }, 121 { "ShowWindow", func_ShowWindow }, 122 { "SwitchToThisWindow", func_SwitchToThisWindow }, 123 { "SystemMenu", func_SystemMenu }, 124 { "SystemParametersInfo", func_SystemParametersInfo }, 125 { "TrackMouseEvent", func_TrackMouseEvent }, 126 { "VirtualKey", func_VirtualKey }, 127 { "WndProc", func_WndProc }, 128 { "wsprintfApi", func_wsprintf }, 129 { 0, 0 } 130 }; 131 132