Bring back ext2 code from branch
[reactos.git] / rostests / apitests / user32api / testlist.c
1 #ifndef _USER32TESTLIST_H
2 #define _USER32TESTLIST_H
3
4 #include "user32api.h"
5
6 /* include the tests */
7 #include "tests/ScrollDC.c"
8 #include "tests/ScrollWindowEx.c"
9
10 /* The List of tests */
11 TESTENTRY TestList[] =
12 {
13 { L"ScrollDC", Test_ScrollDC },
14 { L"ScrollWindowEx", Test_ScrollWindowEx }
15 };
16
17 /* The function that gives us the number of tests */
18 INT NumTests(void)
19 {
20 return sizeof(TestList) / sizeof(TESTENTRY);
21 }
22
23 #endif /* _USER32TESTLIST_H */
24
25 /* EOF */