reactos/rostests/dxtest/ddraw/ddrawtest.h
Maarten Bosma 1c0a28e0fa Start of ddraw test case.
svn path=/trunk/; revision=26739
2007-05-12 19:43:01 +00:00

35 lines
471 B
C

#ifndef _DDRAWTEST_H
#define _DDRAWTEST_H
#define WINVER 0x501
#include <stdio.h>
#include <windows.h>
#include <ddraw.h>
#define TEST(x) \
if (x)\
{\
(*passed)++;\
} else {\
(*failed)++;\
printf("Test failed in %s:%d (%s)\n", __FILE__, __LINE__, #x);\
};
/* The type definitions */
typedef BOOL (*TESTPROC)(INT*, INT*);
typedef struct tagTEST
{
CHAR* Test;
TESTPROC Proc;
} TEST, *PTEST;
extern TEST TestList[];
#endif /* _DDRAWTEST_H */
/* EOF */