Commit 427803a9 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Make wined3d.h a normal header file again.

parent 3032b40c
...@@ -240,7 +240,6 @@ include/wia_xp.h ...@@ -240,7 +240,6 @@ include/wia_xp.h
include/wincodec.h include/wincodec.h
include/wine/itss.h include/wine/itss.h
include/wine/svcctl.h include/wine/svcctl.h
include/wine/wined3d.h
include/wine/winedxgi.h include/wine/winedxgi.h
include/winsxs.h include/winsxs.h
include/wtypes.h include/wtypes.h
......
...@@ -2859,10 +2859,6 @@ static inline BOOL use_ps(const struct wined3d_state *state) ...@@ -2859,10 +2859,6 @@ static inline BOOL use_ps(const struct wined3d_state *state)
/* The WNDCLASS-Name for the fake window which we use to retrieve the GL capabilities */ /* The WNDCLASS-Name for the fake window which we use to retrieve the GL capabilities */
#define WINED3D_OPENGL_WINDOW_CLASS_NAME "WineD3D_OpenGL" #define WINED3D_OPENGL_WINDOW_CLASS_NAME "WineD3D_OpenGL"
#define WINEMAKEFOURCC(ch0, ch1, ch2, ch3) \
((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
#define MAKEDWORD_VERSION(maj, min) (((maj & 0xffff) << 16) | (min & 0xffff)) #define MAKEDWORD_VERSION(maj, min) (((maj & 0xffff) << 16) | (min & 0xffff))
#endif #endif
PRIVATE_IDL_H_SRCS = \ PRIVATE_IDL_H_SRCS = \
wine/wined3d.idl \
wine/winedxgi.idl wine/winedxgi.idl
PUBLIC_IDL_H_SRCS = \ PUBLIC_IDL_H_SRCS = \
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -163,7 +163,6 @@ my %private_idl_headers = ( ...@@ -163,7 +163,6 @@ my %private_idl_headers = (
"vmrender.idl" => 1, "vmrender.idl" => 1,
"xmldom.idl" => 1, "xmldom.idl" => 1,
"xmldso.idl" => 1, "xmldso.idl" => 1,
"wine/wined3d.idl" => 1,
"wine/winedxgi.idl" => 1, "wine/winedxgi.idl" => 1,
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment