Mercurial > mplayer.hg
changeset 30171:837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
author | diego |
---|---|
date | Mon, 04 Jan 2010 20:36:27 +0000 |
parents | 008338d7679f |
children | fbff89bae6a4 |
files | loader/dmo/DMO_AudioDecoder.h loader/dmo/DMO_VideoDecoder.h loader/dshow/DS_AudioDecoder.h loader/dshow/DS_VideoDecoder.h loader/registry.h loader/wine/objbase.h loader/wine/vfw.h loader/wine/winuser.h |
diffstat | 8 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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);
--- 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);
--- 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);
--- 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);
--- 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,
--- 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