2007-05-12 19:43:01 +00:00
|
|
|
#ifndef _DDRAWTESTLIST_H
|
|
|
|
#define _DDRAWTESTLIST_H
|
|
|
|
|
|
|
|
#include "ddrawtest.h"
|
2007-05-13 12:09:44 +00:00
|
|
|
#include "debug.cpp"
|
2007-05-12 19:43:01 +00:00
|
|
|
|
|
|
|
/* include the tests */
|
|
|
|
#include "tests/CreateDDraw.cpp"
|
2007-05-13 12:09:44 +00:00
|
|
|
#include "tests/DisplayModes.cpp"
|
2007-05-13 16:37:58 +00:00
|
|
|
#include "tests/CreateSurface.cpp"
|
2007-05-12 19:43:01 +00:00
|
|
|
|
|
|
|
/* The List of tests */
|
|
|
|
TEST TestList[] =
|
|
|
|
{
|
2007-06-09 13:23:18 +00:00
|
|
|
|
2007-05-16 20:47:02 +00:00
|
|
|
{ "IDirectDraw: COM Stuff", Test_CreateDDraw },
|
2007-06-09 13:23:18 +00:00
|
|
|
{ "IDirectDraw: GetDeviceIdentifier", Test_GetDeviceIdentifier },
|
|
|
|
{ "IDirectDraw: Display Frequency", Test_GetMonitorFrequency },
|
2007-05-16 20:47:02 +00:00
|
|
|
{ "IDirectDraw: Display Modes", Test_DisplayModes },
|
2007-05-16 22:19:07 +00:00
|
|
|
{ "IDirectDraw: Available Video Memory", Test_GetAvailableVidMem },
|
2007-05-21 15:24:57 +00:00
|
|
|
{ "IDirectDraw: GetFourCC", Test_GetFourCCCodes },
|
2007-05-16 20:47:02 +00:00
|
|
|
{ "IDirectDraw: Cooperative Levels", Test_SetCooperativeLevel },
|
|
|
|
{ "IDirectDraw: CreateSurface", Test_CreateSurface },
|
2007-05-12 19:43:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The function that gives us the number of tests */
|
2007-05-16 21:03:02 +00:00
|
|
|
INT NumTests(void)
|
2007-05-12 19:43:01 +00:00
|
|
|
{
|
|
|
|
return sizeof(TestList) / sizeof(TEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _DDRAWTESTLIST_H */
|
|
|
|
|
|
|
|
/* EOF */
|