2007-08-05 03:32:24 +00:00
|
|
|
#ifndef _GDITESTLIST_H
|
|
|
|
#define _GDITESTLIST_H
|
|
|
|
|
|
|
|
#include "gdi32api.h"
|
|
|
|
|
|
|
|
/* include the tests */
|
2007-09-30 11:57:37 +00:00
|
|
|
#include "tests/AddFontResource.c"
|
2007-09-01 22:06:05 +00:00
|
|
|
#include "tests/AddFontResourceEx.c"
|
2007-08-05 03:32:24 +00:00
|
|
|
#include "tests/CreateCompatibleDC.c"
|
|
|
|
#include "tests/CreateFont.c"
|
|
|
|
#include "tests/CreatePen.c"
|
|
|
|
#include "tests/CreateRectRgn.c"
|
|
|
|
#include "tests/ExtCreatePen.c"
|
|
|
|
#include "tests/GetClipRgn.c"
|
|
|
|
#include "tests/GetObject.c"
|
|
|
|
#include "tests/GetStockObject.c"
|
2007-09-24 15:02:20 +00:00
|
|
|
#include "tests/GetDIBits.c"
|
2007-08-05 03:32:24 +00:00
|
|
|
#include "tests/SelectObject.c"
|
|
|
|
#include "tests/SetDCPenColor.c"
|
|
|
|
#include "tests/SetSysColors.c"
|
2008-03-22 03:21:52 +00:00
|
|
|
#include "tests/SetWorldTransform.c"
|
2007-08-05 03:32:24 +00:00
|
|
|
|
|
|
|
/* The List of tests */
|
|
|
|
TESTENTRY TestList[] =
|
|
|
|
{
|
2007-09-30 11:57:37 +00:00
|
|
|
{ L"AddFontResourceA", Test_AddFontResourceA },
|
2007-09-01 22:06:05 +00:00
|
|
|
{ L"AddFontResourceEx", Test_AddFontResourceEx },
|
2007-08-05 03:32:24 +00:00
|
|
|
{ L"CreateCompatibleDC", Test_CreateCompatibleDC },
|
|
|
|
{ L"CreateFont", Test_CreateFont },
|
|
|
|
{ L"CreatePen", Test_CreatePen },
|
|
|
|
{ L"CreateRectRgn", Test_CreateRectRgn },
|
|
|
|
{ L"ExtCreatePen", Test_ExtCreatePen },
|
|
|
|
{ L"GetClipRgn", Test_GetClipRgn },
|
2007-08-28 15:06:36 +00:00
|
|
|
{ L"GetObject", Test_GetObject },
|
2007-08-05 03:32:24 +00:00
|
|
|
{ L"GetStockObject", Test_GetStockObject },
|
2007-09-24 15:02:20 +00:00
|
|
|
{ L"GetDIBits", Test_GetDIBits },
|
2007-08-05 03:32:24 +00:00
|
|
|
{ L"SetSysColors", Test_SetSysColors },
|
|
|
|
{ L"SelectObject", Test_SelectObject },
|
|
|
|
{ L"SetDCPenColor", Test_SetDCPenColor },
|
2008-03-22 03:21:52 +00:00
|
|
|
{ L"SetWorldTransform", Test_SetWorldTransform },
|
2007-08-05 03:32:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The function that gives us the number of tests */
|
|
|
|
INT NumTests(void)
|
|
|
|
{
|
|
|
|
return sizeof(TestList) / sizeof(TESTENTRY);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _GDITESTLIST_H */
|
|
|
|
|
|
|
|
/* EOF */
|