mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
tests: Moved some compatibility defines to wine/test.h.
This commit is contained in:
parent
bfa1937e31
commit
fc4cd637d9
@ -23,14 +23,6 @@
|
||||
#include "fci.h"
|
||||
#include "wine/test.h"
|
||||
|
||||
#ifndef INVALID_FILE_ATTRIBUTES
|
||||
#define INVALID_FILE_ATTRIBUTES 0xffffffff
|
||||
#endif
|
||||
|
||||
#ifndef INVALID_SET_FILE_POINTER
|
||||
#define INVALID_SET_FILE_POINTER 0xffffffff
|
||||
#endif
|
||||
|
||||
/* make the max size large so there is only one cab file */
|
||||
#define MEDIA_SIZE 999999999
|
||||
#define FOLDER_THRESHOLD 900000
|
||||
|
@ -30,10 +30,6 @@
|
||||
|
||||
static const char msifile[] = "winetest.msi";
|
||||
|
||||
#ifndef INVALID_FILE_ATTRIBUTES
|
||||
#define INVALID_FILE_ATTRIBUTES 0xffffffff
|
||||
#endif
|
||||
|
||||
static UINT run_query( MSIHANDLE hdb, const char *query )
|
||||
{
|
||||
MSIHANDLE hview = 0;
|
||||
|
@ -28,10 +28,6 @@
|
||||
|
||||
#include "wine/test.h"
|
||||
|
||||
#ifndef INVALID_FILE_ATTRIBUTES
|
||||
#define INVALID_FILE_ATTRIBUTES 0xffffffff
|
||||
#endif
|
||||
|
||||
#ifndef FOF_NORECURSION
|
||||
#define FOF_NORECURSION 0x1000
|
||||
#endif
|
||||
|
@ -36,6 +36,13 @@
|
||||
#error wine/debug.h should not be used in Wine tests
|
||||
#endif
|
||||
|
||||
#ifndef INVALID_FILE_ATTRIBUTES
|
||||
#define INVALID_FILE_ATTRIBUTES ((DWORD)~0UL)
|
||||
#endif
|
||||
#ifndef INVALID_SET_FILE_POINTER
|
||||
#define INVALID_SET_FILE_POINTER ((DWORD)~0UL)
|
||||
#endif
|
||||
|
||||
/* debug level */
|
||||
extern int winetest_debug;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user