* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61704
This commit is contained in:
Amine Khaldi 2014-01-19 10:46:55 +00:00
parent 64f2664bcb
commit 6cd50aa6f7
3 changed files with 20 additions and 4 deletions

View file

@ -20,6 +20,7 @@ list(APPEND SOURCE
texture.c
vertexdeclaration.c
volume.c
guid.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/d3d9_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/d3d9.def)

View file

@ -25,16 +25,17 @@
#include <config.h>
#include <assert.h>
#include <stdarg.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <assert.h>
#include <stdarg.h>
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#define COBJMACROS
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
@ -42,7 +43,6 @@
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
#include <initguid.h>
#include <d3d9.h>
#include <wine/wined3d.h>

View file

@ -0,0 +1,15 @@
/* DO NOT USE THE PRECOMPILED HEADER FOR THIS FILE! */
#include <stdarg.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
#include <initguid.h>
#include <d3d9.h>
/* NO CODE HERE, THIS IS JUST REQUIRED FOR THE GUID DEFINITIONS */