Fixing a msvc7 comping issue
[reactos.git] / rostests / dxtest / ddraw / testlist.cpp
1 #ifndef _DDRAWTESTLIST_H
2 #define _DDRAWTESTLIST_H
3
4 #include "ddrawtest.h"
5 #include "debug.cpp"
6
7 /* include the tests */
8 #include "tests/CreateDDraw.cpp"
9 #include "tests/DisplayModes.cpp"
10 #include "tests/CreateSurface.cpp"
11
12 /* The List of tests */
13 TEST TestList[] =
14 {
15 { "IDirectDraw: COM Stuff", Test_CreateDDraw },
16 { "IDirectDraw: Display Modes", Test_DisplayModes },
17 { "IDirectDraw: Cooperative Levels", Test_SetCooperativeLevel },
18 { "IDirectDraw: CreateSurface", Test_CreateSurface },
19 };
20
21 /* The function that gives us the number of tests */
22 INT NumTests(void)
23 {
24 return sizeof(TestList) / sizeof(TEST);
25 }
26
27 #endif /* _DDRAWTESTLIST_H */
28
29 /* EOF */