mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
34 lines
908 B
C++
34 lines
908 B
C++
#ifndef _DDRAWTESTLIST_H
|
|
#define _DDRAWTESTLIST_H
|
|
|
|
#include "ddrawtest.h"
|
|
#include "debug.cpp"
|
|
|
|
/* include the tests */
|
|
#include "tests/CreateDDraw.cpp"
|
|
#include "tests/DisplayModes.cpp"
|
|
#include "tests/CreateSurface.cpp"
|
|
|
|
/* The List of tests */
|
|
TEST TestList[] =
|
|
{
|
|
|
|
{ "IDirectDraw: COM Stuff", Test_CreateDDraw },
|
|
{ "IDirectDraw: GetDeviceIdentifier", Test_GetDeviceIdentifier },
|
|
{ "IDirectDraw: Display Frequency", Test_GetMonitorFrequency },
|
|
{ "IDirectDraw: Display Modes", Test_DisplayModes },
|
|
{ "IDirectDraw: Available Video Memory", Test_GetAvailableVidMem },
|
|
{ "IDirectDraw: GetFourCC", Test_GetFourCCCodes },
|
|
{ "IDirectDraw: Cooperative Levels", Test_SetCooperativeLevel },
|
|
{ "IDirectDraw: CreateSurface", Test_CreateSurface },
|
|
};
|
|
|
|
/* The function that gives us the number of tests */
|
|
INT NumTests(void)
|
|
{
|
|
return sizeof(TestList) / sizeof(TEST);
|
|
}
|
|
|
|
#endif /* _DDRAWTESTLIST_H */
|
|
|
|
/* EOF */
|