mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
d55028d26f
svn path=/trunk/; revision=33818
31 lines
691 B
C
31 lines
691 B
C
#ifndef _USER32TESTLIST_H
|
|
#define _USER32TESTLIST_H
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
#include "user32api.h"
|
|
|
|
/* include the tests */
|
|
#include "tests/InitializeLpkHooks.c"
|
|
#include "tests/ScrollDC.c"
|
|
#include "tests/ScrollWindowEx.c"
|
|
#include "tests/RealGetWindowClass.c"
|
|
|
|
/* The List of tests */
|
|
TESTENTRY TestList[] =
|
|
{
|
|
{ L"InitializeLpkHooks", Test_InitializeLpkHooks },
|
|
{ L"ScrollDC", Test_ScrollDC },
|
|
{ L"ScrollWindowEx", Test_ScrollWindowEx },
|
|
{ L"RealGetWindowClass", Test_RealGetWindowClass },
|
|
};
|
|
|
|
/* The function that gives us the number of tests */
|
|
INT NumTests(void)
|
|
{
|
|
return ARRAY_SIZE(TestList);
|
|
}
|
|
|
|
#endif /* _USER32TESTLIST_H */
|
|
|
|
/* EOF */
|