mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
25 lines
619 B
C
25 lines
619 B
C
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#define __ROS_LONG64__
|
||
|
#include <windows.h>
|
||
|
|
||
|
#define STANDALONE
|
||
|
#include "wine/test.h"
|
||
|
|
||
|
extern void func_InitializeLpkHooks(void);
|
||
|
extern void func_RealGetWindowClass(void);
|
||
|
extern void func_ScrollDC(void);
|
||
|
extern void func_ScrollWindowEx(void);
|
||
|
extern void func_GetSystemMetrics(void);
|
||
|
|
||
|
const struct test winetest_testlist[] =
|
||
|
{
|
||
|
{ "InitializeLpkHooks", func_InitializeLpkHooks },
|
||
|
{ "RealGetWindowClass", func_RealGetWindowClass },
|
||
|
{ "ScrollDC", func_ScrollDC },
|
||
|
{ "ScrollWindowEx", func_ScrollWindowEx },
|
||
|
{ "GetSystemMetrics", func_GetSystemMetrics },
|
||
|
|
||
|
{ 0, 0 }
|
||
|
};
|
||
|
|