Adding a text file call notes.txt it is some werid thing I have have not yet figout...
[reactos.git] / rostests / apitests / gdi32api / testlist.c
1 #ifndef _GDITESTLIST_H
2 #define _GDITESTLIST_H
3
4 #include "gdi32api.h"
5
6 /* include the tests */
7 #include "tests/AddFontResource.c"
8 #include "tests/AddFontResourceEx.c"
9 #include "tests/CreateCompatibleDC.c"
10 #include "tests/CreateFont.c"
11 #include "tests/CreatePen.c"
12 #include "tests/CreateRectRgn.c"
13 #include "tests/ExtCreatePen.c"
14 #include "tests/GetClipRgn.c"
15 #include "tests/GetObject.c"
16 #include "tests/GetStockObject.c"
17 #include "tests/GetDIBits.c"
18 #include "tests/SelectObject.c"
19 #include "tests/SetDCPenColor.c"
20 #include "tests/SetSysColors.c"
21 //#include "tests/SetWorldTransform.c"
22
23 /* The List of tests */
24 TESTENTRY TestList[] =
25 {
26 { L"AddFontResourceA", Test_AddFontResourceA },
27 { L"AddFontResourceEx", Test_AddFontResourceEx },
28 { L"CreateCompatibleDC", Test_CreateCompatibleDC },
29 { L"CreateFont", Test_CreateFont },
30 { L"CreatePen", Test_CreatePen },
31 { L"CreateRectRgn", Test_CreateRectRgn },
32 { L"ExtCreatePen", Test_ExtCreatePen },
33 { L"GetClipRgn", Test_GetClipRgn },
34 { L"GetObject", Test_GetObject },
35 { L"GetStockObject", Test_GetStockObject },
36 { L"GetDIBits", Test_GetDIBits },
37 { L"SetSysColors", Test_SetSysColors },
38 { L"SelectObject", Test_SelectObject },
39 { L"SetDCPenColor", Test_SetDCPenColor },
40 // { L"SetWorldTransform", Test_SetWorldTransform },
41 };
42
43 /* The function that gives us the number of tests */
44 INT NumTests(void)
45 {
46 return sizeof(TestList) / sizeof(TESTENTRY);
47 }
48
49 #endif /* _GDITESTLIST_H */
50
51 /* EOF */