6a9a78c6c34fec28a22bd0acc8ca5bcdccaaef8a
[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/CreateBitmapIndirect.c"
10 #include "tests/CreateCompatibleDC.c"
11 #include "tests/CreateFont.c"
12 #include "tests/CreatePen.c"
13 #include "tests/CreateRectRgn.c"
14 #include "tests/EngCreateSemaphore.c"
15 #include "tests/EngAcquireSemaphore.c"
16 #include "tests/EngDeleteSemaphore.c"
17 #include "tests/EngReleaseSemaphore.c"
18 #include "tests/ExtCreatePen.c"
19 #include "tests/GdiConvertBitmap.c"
20 #include "tests/GdiConvertBrush.c"
21 #include "tests/GdiConvertDC.c"
22 #include "tests/GdiConvertFont.c"
23 #include "tests/GdiConvertPalette.c"
24 #include "tests/GdiConvertRegion.c"
25 #include "tests/GdiDeleteLocalDC.c"
26 #include "tests/GdiGetLocalBrush.c"
27 #include "tests/GdiGetLocalDC.c"
28 #include "tests/GdiReleaseLocalDC.c"
29 #include "tests/GdiSetAttrs.c"
30 #include "tests/GetClipRgn.c"
31 #include "tests/GetCurrentObject.c"
32 #include "tests/GetDIBits.c"
33 #include "tests/GetObject.c"
34 #include "tests/GetStockObject.c"
35 #include "tests/SelectObject.c"
36 #include "tests/SetDCPenColor.c"
37 #include "tests/SetSysColors.c"
38 #include "tests/SetWorldTransform.c"
39
40
41
42
43
44
45
46
47
48
49 /* The List of tests */
50 TESTENTRY TestList[] =
51 {
52 { L"AddFontResourceA", Test_AddFontResourceA },
53 { L"AddFontResourceEx", Test_AddFontResourceEx },
54 { L"CreateBitmapIndirect", Test_CreateBitmapIndirect },
55 { L"CreateCompatibleDC", Test_CreateCompatibleDC },
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"GdiConvertBrush", Test_GdiConvertDC },
67 { L"GdiConvertFont", Test_GdiConvertFont },
68 { L"GdiConvertPalette", Test_GdiConvertPalette },
69 { L"GdiConvertRegion", Test_GdiConvertRegion },
70 { L"GdiDeleteLocalDC", Test_GdiDeleteLocalDC },
71 { L"GdiGetLocalBrush", Test_GdiGetLocalBrush },
72 { L"GdiGetLocalDC", Test_GdiGetLocalDC },
73 { L"GdiReleaseLocalDC", Test_GdiReleaseLocalDC },
74 { L"GdiSetAttrs", Test_GdiSetAttrs },
75 { L"GetClipRgn", Test_GetClipRgn },
76 { L"GetCurrentObject", Test_GetCurrentObject },
77 { L"GetDIBits", Test_GetDIBits },
78 { L"GetObject", Test_GetObject },
79 { L"GetStockObject", Test_GetStockObject },
80 { L"SelectObject", Test_SelectObject },
81 { L"SetDCPenColor", Test_SetDCPenColor },
82 { L"SetSysColors", Test_SetSysColors },
83 { L"SetWorldTransform", Test_SetWorldTransform },
84 };
85
86 /* The function that gives us the number of tests */
87 INT NumTests(void)
88 {
89 return sizeof(TestList) / sizeof(TESTENTRY);
90 }
91
92 #endif /* _GDITESTLIST_H */
93
94 /* EOF */