mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#ifndef _DDRAWTESTLIST_H
|
|
#define _DDRAWTESTLIST_H
|
|
|
|
#include "ddrawtest.h"
|
|
#include "debug.cpp"
|
|
|
|
/* include the tests */
|
|
#include "DDraw/create.cpp"
|
|
#include "DDraw/display_modes.cpp"
|
|
#include "DDraw/available_mem.cpp"
|
|
#include "Surface/create.cpp"
|
|
#include "Surface/private_data.cpp"
|
|
#include "Surface/blt.cpp"
|
|
#include "Surface/misc.cpp"
|
|
|
|
/* The List of tests */
|
|
TEST TestList[] =
|
|
{
|
|
{ "IDirectDraw: COM Stuff", Test_CreateDDraw },
|
|
{ "IDirectDraw: GetDeviceIdentifier", Test_GetDeviceIdentifier },
|
|
{ "IDirectDraw: Display Modes", Test_DisplayModes },
|
|
{ "IDirectDraw: Available Video Memory", Test_GetAvailableVidMem },
|
|
{ "IDirectDraw: GetFourCC", Test_GetFourCCCodes },
|
|
{ "IDirectDraw: Cooperative Levels", Test_SetCooperativeLevel },
|
|
{ "IDirectDrawSurface: Creation", Test_CreateSurface },
|
|
{ "IDirectDrawSurface: Blting", Test_Blt },
|
|
{ "IDirectDrawSurface: Private Data", Test_PrivateData },
|
|
{ "IDirectDrawSurface: Miscellaneous Tests", Test_Misc },
|
|
};
|
|
|
|
/* The function that gives us the number of tests */
|
|
INT NumTests(void)
|
|
{
|
|
return sizeof(TestList) / sizeof(TEST);
|
|
}
|
|
|
|
#endif /* _DDRAWTESTLIST_H */
|
|
|
|
/* EOF */
|