2010-08-25 08:50:10 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2012-08-13 18:04:04 +00:00
|
|
|
extern void func_AttachThreadInput(void);
|
2012-07-04 17:33:56 +00:00
|
|
|
extern void func_DeferWindowPos(void);
|
2012-02-19 23:46:06 +00:00
|
|
|
extern void func_desktop(void);
|
2012-07-04 17:33:56 +00:00
|
|
|
extern void func_GetIconInfo(void);
|
|
|
|
extern void func_GetKeyState(void);
|
|
|
|
extern void func_GetPeekMessage(void);
|
|
|
|
extern void func_GetSystemMetrics(void);
|
2010-08-25 08:50:10 +00:00
|
|
|
extern void func_InitializeLpkHooks(void);
|
|
|
|
extern void func_RealGetWindowClass(void);
|
|
|
|
extern void func_ScrollDC(void);
|
|
|
|
extern void func_ScrollWindowEx(void);
|
2011-09-07 14:05:58 +00:00
|
|
|
extern void func_SetActiveWindow(void);
|
2012-07-04 17:33:56 +00:00
|
|
|
extern void func_SetCursorPos(void);
|
2011-10-17 16:35:22 +00:00
|
|
|
extern void func_SystemParametersInfo(void);
|
2011-09-21 12:30:22 +00:00
|
|
|
extern void func_TrackMouseEvent(void);
|
2011-05-15 21:15:38 +00:00
|
|
|
extern void func_WndProc(void);
|
2012-07-04 17:33:56 +00:00
|
|
|
extern void func_wsprintf(void);
|
2010-08-25 08:50:10 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2012-08-13 18:04:04 +00:00
|
|
|
{ "AttachThreadInput", func_AttachThreadInput },
|
2012-07-04 17:33:56 +00:00
|
|
|
{ "desktop", func_desktop },
|
|
|
|
{ "DeferWindowPos", func_DeferWindowPos },
|
|
|
|
{ "GetIconInfo", func_GetIconInfo },
|
|
|
|
{ "GetKeyState", func_GetKeyState },
|
|
|
|
{ "GetPeekMessage", func_GetPeekMessage },
|
|
|
|
{ "GetSystemMetrics", func_GetSystemMetrics },
|
2010-08-25 08:50:10 +00:00
|
|
|
{ "InitializeLpkHooks", func_InitializeLpkHooks },
|
|
|
|
{ "RealGetWindowClass", func_RealGetWindowClass },
|
|
|
|
{ "ScrollDC", func_ScrollDC },
|
|
|
|
{ "ScrollWindowEx", func_ScrollWindowEx },
|
2011-09-07 14:05:58 +00:00
|
|
|
{ "SetActiveWindow", func_SetActiveWindow },
|
2012-07-04 17:33:56 +00:00
|
|
|
{ "SetCursorPos", func_SetCursorPos },
|
2011-10-17 16:35:22 +00:00
|
|
|
{ "SystemParametersInfo", func_SystemParametersInfo },
|
2011-09-21 12:30:22 +00:00
|
|
|
{ "TrackMouseEvent", func_TrackMouseEvent },
|
2011-05-15 21:15:38 +00:00
|
|
|
{ "WndProc", func_WndProc },
|
2012-07-04 18:01:13 +00:00
|
|
|
{ "wsprintfApi", func_wsprintf },
|
2010-08-25 08:50:10 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|