* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61726
This commit is contained in:
Amine Khaldi 2014-01-20 12:37:33 +00:00
parent dd0655b3f5
commit ba47e91e6f
4 changed files with 13 additions and 12 deletions

View file

@ -20,6 +20,8 @@
#include "quartz_private.h"
#include <wine/list.h>
typedef struct StdMediaSample2
{
IMediaSample2 IMediaSample2_iface;

View file

@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#pragma once
typedef struct ParserImpl ParserImpl;
typedef HRESULT (*PFN_PROCESS_SAMPLE) (LPVOID iface, IMediaSample * pSample, DWORD_PTR cookie);

View file

@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#pragma once
/* This function will process incoming samples to the pin.
* Any return value valid in IMemInputPin::Receive is allowed here
*

View file

@ -20,34 +20,29 @@
#ifndef __QUARTZ_PRIVATE_INCLUDED__
#define __QUARTZ_PRIVATE_INCLUDED__
#include <config.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <wine/config.h>
#include <stdarg.h>
#include <assert.h>
#define WIN32_LEAN_AND_MEAN
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define COBJMACROS
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#define COBJMACROS
#include <windef.h>
#include <winbase.h>
#include <wtypes.h>
#include <wingdi.h>
#include <winuser.h>
#include <objbase.h>
#include <oleauto.h>
#include <dshow.h>
#include <dvdmedia.h>
#include <vfw.h>
#include <aviriff.h>
#include <wine/strmbase.h>
#include <wine/list.h>
#include <wine/unicode.h>
#include <wine/debug.h>