stash
[wine/wine64.git] / include / ddstream.idl
blob947e2bcde4fee3fc6be9293aa0f12444b0765ac1
1 /*
2 * Copyright 2004 Christian Costa
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 import "unknwn.idl";
20 import "mmstream.idl";
22 cpp_quote("#ifndef __WINE_DDRAW_H")
23 typedef void * LPDDSURFACEDESC;
24 typedef struct tDDSURFACEDESC DDSURFACEDESC;
25 interface IDirectDraw;
26 interface IDirectDrawSurface;
27 interface IDirectDrawPalette;
28 cpp_quote("#endif")
29 cpp_quote("#include <ddraw.h>")
31 enum {
32 DDSFF_PROGRESSIVERENDER = 0x00000001
35 interface IDirectDrawMediaStream;
36 interface IDirectDrawStreamSample;
39 object,
40 local,
41 uuid(F4104FCE-9A70-11d0-8FDE-00C04FD9189D),
42 pointer_default(unique)
44 interface IDirectDrawMediaStream : IMediaStream
46 HRESULT GetFormat(
47 [out] DDSURFACEDESC *pDDSDCurrent,
48 [out] IDirectDrawPalette **ppDirectDrawPalette,
49 [out] DDSURFACEDESC *pDDSDDesired,
50 [out] DWORD *pdwFlags);
52 HRESULT SetFormat(
53 [in] const DDSURFACEDESC *pDDSurfaceDesc,
54 [in] IDirectDrawPalette *pDirectDrawPalette);
56 HRESULT GetDirectDraw(
57 [out] IDirectDraw **ppDirectDraw);
59 HRESULT SetDirectDraw(
60 [in] IDirectDraw *pDirectDraw);
62 HRESULT CreateSample(
63 [in] IDirectDrawSurface *pSurface,
64 [in] const RECT *pRect,
65 [in] DWORD dwFlags,
66 [out] IDirectDrawStreamSample **ppSample);
68 HRESULT GetTimePerFrame(
69 [out] STREAM_TIME *pFrameTime);
74 object,
75 local,
76 uuid(F4104FCF-9A70-11d0-8FDE-00C04FD9189D),
77 pointer_default(unique)
79 interface IDirectDrawStreamSample : IStreamSample
81 HRESULT GetSurface(
82 [out] IDirectDrawSurface ** ppDirectDrawSurface,
83 [out] RECT * pRect);
85 HRESULT SetRect(
86 [in] const RECT * pRect);