- Fix epic naming fail (DhcpEnabled -> EnableDHCP
[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/BeginPath.c"
10 #include "tests/CreateBitmapIndirect.c"
11 #include "tests/CreateCompatibleDC.c"
12 #include "tests/CreateFontIndirect.c"
13 #include "tests/CreateFont.c"
14 #include "tests/CreatePen.c"
15 #include "tests/CreateRectRgn.c"
16 #include "tests/EngCreateSemaphore.c"
17 #include "tests/EngAcquireSemaphore.c"
18 #include "tests/EngDeleteSemaphore.c"
19 #include "tests/EngReleaseSemaphore.c"
20 #include "tests/ExtCreatePen.c"
21 #include "tests/GdiConvertBitmap.c"
22 #include "tests/GdiConvertBrush.c"
23 #include "tests/GdiConvertDC.c"
24 #include "tests/GdiConvertFont.c"
25 #include "tests/GdiConvertPalette.c"
26 #include "tests/GdiConvertRegion.c"
27 #include "tests/GdiDeleteLocalDC.c"
28 #include "tests/GdiGetCharDimensions.c"
29 #include "tests/GdiGetLocalBrush.c"
30 #include "tests/GdiGetLocalDC.c"
31 #include "tests/GdiReleaseLocalDC.c"
32 #include "tests/GdiSetAttrs.c"
33 #include "tests/GetClipRgn.c"
34 #include "tests/GetCurrentObject.c"
35 #include "tests/GetDIBits.c"
36 #include "tests/GetObject.c"
37 #include "tests/GetStockObject.c"
38 #include "tests/GetTextFace.c"
39 #include "tests/SelectObject.c"
40 #include "tests/SetDCPenColor.c"
41 #include "tests/SetMapMode.c"
42 #include "tests/SetSysColors.c"
43 #include "tests/SetWindowExtEx.c"
44 #include "tests/SetWorldTransform.c"
45
46
47 /* The List of tests */
48 TESTENTRY TestList[] =
49 {
50 { L"AddFontResourceA", Test_AddFontResourceA },
51 { L"AddFontResourceEx", Test_AddFontResourceEx },
52 { L"BeginPath", Test_BeginPath },
53 { L"CreateBitmapIndirect", Test_CreateBitmapIndirect },
54 { L"CreateCompatibleDC", Test_CreateCompatibleDC },
55 { L"CreateFontIndirect", Test_CreateFontIndirect },
56 { L"CreateFont", Test_CreateFont },
57 { L"CreatePen", Test_CreatePen },
58 { L"EngCreateSemaphore", Test_EngCreateSemaphore },
59 { L"EngAcquireSemaphore", Test_EngAcquireSemaphore },
60 { L"EngDeleteSemaphore", Test_EngDeleteSemaphore },
61 { L"EngReleaseSemaphore", Test_EngReleaseSemaphore },
62 { L"CreateRectRgn", Test_CreateRectRgn },
63 { L"ExtCreatePen", Test_ExtCreatePen },
64 { L"GdiConvertBitmap", Test_GdiConvertBitmap },
65 { L"GdiConvertBrush", Test_GdiConvertBrush },
66 { L"GdiConvertDC", Test_GdiConvertDC },
67 { L"GdiConvertFont", Test_GdiConvertFont },
68 { L"GdiConvertPalette", Test_GdiConvertPalette },
69 { L"GdiConvertRegion", Test_GdiConvertRegion },
70 { L"GdiDeleteLocalDC", Test_GdiDeleteLocalDC },
71 { L"GdiGetCharDimensions", Test_GdiGetCharDimensions },
72 { L"GdiGetLocalBrush", Test_GdiGetLocalBrush },
73 { L"GdiGetLocalDC", Test_GdiGetLocalDC },
74 { L"GdiReleaseLocalDC", Test_GdiReleaseLocalDC },
75 { L"GdiSetAttrs", Test_GdiSetAttrs },
76 { L"GetClipRgn", Test_GetClipRgn },
77 { L"GetCurrentObject", Test_GetCurrentObject },
78 { L"GetDIBits", Test_GetDIBits },
79 { L"GetObject", Test_GetObject },
80 { L"GetStockObject", Test_GetStockObject },
81 { L"GetTextFace", Test_GetTextFace },
82 { L"SelectObject", Test_SelectObject },
83 { L"SetDCPenColor", Test_SetDCPenColor },
84 { L"SetMapMode", Test_SetMapMode },
85 { L"SetSysColors", Test_SetSysColors },
86 { L"SetWindowExtEx", Test_SetWindowExtEx },
87 { L"SetWorldTransform", Test_SetWorldTransform },
88 };
89
90 /* The function that gives us the number of tests */
91 INT NumTests(void)
92 {
93 return sizeof(TestList) / sizeof(TESTENTRY);
94 }
95
96 #endif /* _GDITESTLIST_H */
97
98 /* EOF */