mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
eaf88dc90a
- Fix no-EOL-at-EOF warnings. svn path=/trunk/; revision=37152
37 lines
530 B
C
37 lines
530 B
C
#ifndef _DDRAWTEST_H
|
|
#define _DDRAWTEST_H
|
|
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <ddraw.h>
|
|
#include <ddrawi.h>
|
|
#include <d3dhal.h>
|
|
#include <ddrawgdi.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 */
|