# HG changeset patch # User diego # Date 1262637387 0 # Node ID 837cd9762b4e013de4102b2e3f5b86b623134fcb # Parent 008338d7679faf45db5a71cbbfccfc381184a49f Add required header #includes to satisfy 'make checkheaders'. diff -r 008338d7679f -r 837cd9762b4e loader/dmo/DMO_AudioDecoder.h --- a/loader/dmo/DMO_AudioDecoder.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/dmo/DMO_AudioDecoder.h Mon Jan 04 20:36:27 2010 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_DMO_AUDIODECODER_H #define MPLAYER_DMO_AUDIODECODER_H +#include "loader/com.h" +#include "loader/wine/mmreg.h" + typedef struct DMO_AudioDecoder DMO_AudioDecoder; //DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); diff -r 008338d7679f -r 837cd9762b4e loader/dmo/DMO_VideoDecoder.h --- a/loader/dmo/DMO_VideoDecoder.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/dmo/DMO_VideoDecoder.h Mon Jan 04 20:36:27 2010 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_DMO_VIDEODECODER_H #define MPLAYER_DMO_VIDEODECODER_H +#include "loader/com.h" +#include "loader/wine/vfw.h" + typedef struct DMO_VideoDecoder DMO_VideoDecoder; int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this); diff -r 008338d7679f -r 837cd9762b4e loader/dshow/DS_AudioDecoder.h --- a/loader/dshow/DS_AudioDecoder.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/dshow/DS_AudioDecoder.h Mon Jan 04 20:36:27 2010 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_DS_AUDIODECODER_H #define MPLAYER_DS_AUDIODECODER_H +#include "loader/com.h" +#include "loader/wine/mmreg.h" + typedef struct DS_AudioDecoder DS_AudioDecoder; //DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); diff -r 008338d7679f -r 837cd9762b4e loader/dshow/DS_VideoDecoder.h --- a/loader/dshow/DS_VideoDecoder.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/dshow/DS_VideoDecoder.h Mon Jan 04 20:36:27 2010 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_DS_VIDEODECODER_H #define MPLAYER_DS_VIDEODECODER_H +#include "loader/com.h" +#include "loader/wine/vfw.h" + typedef struct DS_VideoDecoder DS_VideoDecoder; int DS_VideoDecoder_GetCapabilities(DS_VideoDecoder *this); diff -r 008338d7679f -r 837cd9762b4e loader/registry.h --- a/loader/registry.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/registry.h Mon Jan 04 20:36:27 2010 +0000 @@ -17,6 +17,8 @@ extern "C" { #endif +#include "wine/winbase.h" + void free_registry(void); long __stdcall RegOpenKeyExA(long key, const char* subkey, long reserved, diff -r 008338d7679f -r 837cd9762b4e loader/wine/objbase.h --- a/loader/wine/objbase.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/wine/objbase.h Mon Jan 04 20:36:27 2010 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_OBJBASE_H #define MPLAYER_OBJBASE_H +#include "windef.h" + #ifndef STDCALL #define STDCALL __attribute__((__stdcall__)) #endif diff -r 008338d7679f -r 837cd9762b4e loader/wine/vfw.h --- a/loader/wine/vfw.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/wine/vfw.h Mon Jan 04 20:36:27 2010 +0000 @@ -10,6 +10,8 @@ extern "C" { #endif +#include "windef.h" + typedef struct __attribute__((__packed__)) { short bfType; diff -r 008338d7679f -r 837cd9762b4e loader/wine/winuser.h --- a/loader/wine/winuser.h Mon Jan 04 20:32:23 2010 +0000 +++ b/loader/wine/winuser.h Mon Jan 04 20:36:27 2010 +0000 @@ -9,6 +9,7 @@ extern "C" { #endif +#include "windef.h" #include "pshpack1.h" /* flags for HIGHCONTRAST dwFlags field */