2004-03-09 02:29:56 +01:00
|
|
|
/*
|
|
|
|
* MultiMedia Streams private interfaces (AMSTREAM.DLL)
|
|
|
|
*
|
|
|
|
* Copyright 2004 Christian Costa
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-09 02:29:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AMSTREAM_PRIVATE_INCLUDED__
|
|
|
|
#define __AMSTREAM_PRIVATE_INCLUDED__
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wtypes.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "dshow.h"
|
2005-11-07 17:38:48 +01:00
|
|
|
#include "mmstream.h"
|
2012-04-03 17:51:07 +02:00
|
|
|
#include "austream.h"
|
2015-06-20 22:34:58 +02:00
|
|
|
#include "amstream.h"
|
2019-05-17 07:31:05 +02:00
|
|
|
#include "wine/heap.h"
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
HRESULT multimedia_stream_create(IUnknown *outer, void **out) DECLSPEC_HIDDEN;
|
2012-04-03 17:51:07 +02:00
|
|
|
HRESULT AMAudioData_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
2019-08-29 03:24:32 +02:00
|
|
|
HRESULT filter_create(IUnknown *outer, void **out) DECLSPEC_HIDDEN;
|
2020-05-27 21:05:50 +02:00
|
|
|
HRESULT ddraw_stream_create(IUnknown *outer, void **out) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT audio_stream_create(IUnknown *outer, void **out) DECLSPEC_HIDDEN;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
|
|
|
#endif /* __AMSTREAM_PRIVATE_INCLUDED__ */
|