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