1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-03 13:32:16 +00:00

Add required header #includes to satisfy 'make checkheaders'.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30213 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-01-04 20:36:27 +00:00
parent a4ce4a23b7
commit dec1227f1c
8 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_DMO_AUDIODECODER_H #ifndef MPLAYER_DMO_AUDIODECODER_H
#define MPLAYER_DMO_AUDIODECODER_H #define MPLAYER_DMO_AUDIODECODER_H
#include "loader/com.h"
#include "loader/wine/mmreg.h"
typedef struct DMO_AudioDecoder DMO_AudioDecoder; typedef struct DMO_AudioDecoder DMO_AudioDecoder;
//DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); //DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf);

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_DMO_VIDEODECODER_H #ifndef MPLAYER_DMO_VIDEODECODER_H
#define MPLAYER_DMO_VIDEODECODER_H #define MPLAYER_DMO_VIDEODECODER_H
#include "loader/com.h"
#include "loader/wine/vfw.h"
typedef struct DMO_VideoDecoder DMO_VideoDecoder; typedef struct DMO_VideoDecoder DMO_VideoDecoder;
int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this); int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this);

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_DS_AUDIODECODER_H #ifndef MPLAYER_DS_AUDIODECODER_H
#define MPLAYER_DS_AUDIODECODER_H #define MPLAYER_DS_AUDIODECODER_H
#include "loader/com.h"
#include "loader/wine/mmreg.h"
typedef struct DS_AudioDecoder DS_AudioDecoder; typedef struct DS_AudioDecoder DS_AudioDecoder;
//DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf); //DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf);

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_DS_VIDEODECODER_H #ifndef MPLAYER_DS_VIDEODECODER_H
#define MPLAYER_DS_VIDEODECODER_H #define MPLAYER_DS_VIDEODECODER_H
#include "loader/com.h"
#include "loader/wine/vfw.h"
typedef struct DS_VideoDecoder DS_VideoDecoder; typedef struct DS_VideoDecoder DS_VideoDecoder;
int DS_VideoDecoder_GetCapabilities(DS_VideoDecoder *this); int DS_VideoDecoder_GetCapabilities(DS_VideoDecoder *this);

View File

@ -17,6 +17,8 @@
extern "C" { extern "C" {
#endif #endif
#include "wine/winbase.h"
void free_registry(void); void free_registry(void);
long __stdcall RegOpenKeyExA(long key, const char* subkey, long reserved, long __stdcall RegOpenKeyExA(long key, const char* subkey, long reserved,

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_OBJBASE_H #ifndef MPLAYER_OBJBASE_H
#define MPLAYER_OBJBASE_H #define MPLAYER_OBJBASE_H
#include "windef.h"
#ifndef STDCALL #ifndef STDCALL
#define STDCALL __attribute__((__stdcall__)) #define STDCALL __attribute__((__stdcall__))
#endif #endif

View File

@ -10,6 +10,8 @@
extern "C" { extern "C" {
#endif #endif
#include "windef.h"
typedef struct __attribute__((__packed__)) typedef struct __attribute__((__packed__))
{ {
short bfType; short bfType;

View File

@ -9,6 +9,7 @@
extern "C" { extern "C" {
#endif #endif
#include "windef.h"
#include "pshpack1.h" #include "pshpack1.h"
/* flags for HIGHCONTRAST dwFlags field */ /* flags for HIGHCONTRAST dwFlags field */