mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:33:10 +00:00
[QUARTZ]
* 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:
parent
dd0655b3f5
commit
ba47e91e6f
4 changed files with 13 additions and 12 deletions
|
@ -20,6 +20,8 @@
|
||||||
|
|
||||||
#include "quartz_private.h"
|
#include "quartz_private.h"
|
||||||
|
|
||||||
|
#include <wine/list.h>
|
||||||
|
|
||||||
typedef struct StdMediaSample2
|
typedef struct StdMediaSample2
|
||||||
{
|
{
|
||||||
IMediaSample2 IMediaSample2_iface;
|
IMediaSample2 IMediaSample2_iface;
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
typedef struct ParserImpl ParserImpl;
|
typedef struct ParserImpl ParserImpl;
|
||||||
|
|
||||||
typedef HRESULT (*PFN_PROCESS_SAMPLE) (LPVOID iface, IMediaSample * pSample, DWORD_PTR cookie);
|
typedef HRESULT (*PFN_PROCESS_SAMPLE) (LPVOID iface, IMediaSample * pSample, DWORD_PTR cookie);
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
/* This function will process incoming samples to the pin.
|
/* This function will process incoming samples to the pin.
|
||||||
* Any return value valid in IMemInputPin::Receive is allowed here
|
* Any return value valid in IMemInputPin::Receive is allowed here
|
||||||
*
|
*
|
||||||
|
|
|
@ -20,34 +20,29 @@
|
||||||
#ifndef __QUARTZ_PRIVATE_INCLUDED__
|
#ifndef __QUARTZ_PRIVATE_INCLUDED__
|
||||||
#define __QUARTZ_PRIVATE_INCLUDED__
|
#define __QUARTZ_PRIVATE_INCLUDED__
|
||||||
|
|
||||||
#include <config.h>
|
#include <wine/config.h>
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
|
||||||
#define _INC_WINDOWS
|
|
||||||
#define COM_NO_WINDOWS_H
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <assert.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 NONAMELESSUNION
|
||||||
#define NONAMELESSSTRUCT
|
#define NONAMELESSSTRUCT
|
||||||
|
|
||||||
#define COBJMACROS
|
|
||||||
|
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#include <winbase.h>
|
#include <winbase.h>
|
||||||
#include <wtypes.h>
|
|
||||||
#include <wingdi.h>
|
|
||||||
#include <winuser.h>
|
|
||||||
#include <objbase.h>
|
#include <objbase.h>
|
||||||
#include <oleauto.h>
|
|
||||||
#include <dshow.h>
|
#include <dshow.h>
|
||||||
#include <dvdmedia.h>
|
#include <dvdmedia.h>
|
||||||
#include <vfw.h>
|
#include <vfw.h>
|
||||||
#include <aviriff.h>
|
#include <aviriff.h>
|
||||||
|
|
||||||
#include <wine/strmbase.h>
|
#include <wine/strmbase.h>
|
||||||
#include <wine/list.h>
|
|
||||||
#include <wine/unicode.h>
|
#include <wine/unicode.h>
|
||||||
|
|
||||||
#include <wine/debug.h>
|
#include <wine/debug.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue