summaryrefslogtreecommitdiffstats
path: root/sdk/dx8sdk/Include/DShowIDL/ddstream.idl
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
commit3e24ae8812ca4a0031d82ea7f7393605b8a4283a (patch)
tree5cc79378e86970d3b63cbed173d627410ea90ca6 /sdk/dx8sdk/Include/DShowIDL/ddstream.idl
parentMerge pull request #669 from erorcun/miami (diff)
parentMove sdk and eax (diff)
downloadre3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.gz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.bz2
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.lz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.xz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.zst
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.zip
Diffstat (limited to 'sdk/dx8sdk/Include/DShowIDL/ddstream.idl')
-rw-r--r--sdk/dx8sdk/Include/DShowIDL/ddstream.idl86
1 files changed, 86 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/DShowIDL/ddstream.idl b/sdk/dx8sdk/Include/DShowIDL/ddstream.idl
new file mode 100644
index 00000000..30fa0475
--- /dev/null
+++ b/sdk/dx8sdk/Include/DShowIDL/ddstream.idl
@@ -0,0 +1,86 @@
+//------------------------------------------------------------------------------
+// File: DDStream.idl
+//
+// Desc: Used by MIDL tool to generate ddstream.h
+//
+// Copyright (c) 1998-2002, Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+
+import "unknwn.idl";
+import "mmstream.idl";
+
+cpp_quote("//")
+cpp_quote("// The following declarations within the 'if 0' block are dummy typedefs used to make")
+cpp_quote("// the ddstream.idl file build. The actual definitions are contained in DDRAW.H")
+cpp_quote("//")
+cpp_quote("#if 0")
+typedef void * LPDDSURFACEDESC;
+typedef struct tDDSURFACEDESC DDSURFACEDESC;
+cpp_quote("#endif")
+cpp_quote("#include <ddraw.h>")
+
+enum {
+ DDSFF_PROGRESSIVERENDER = 0x00000001
+};
+
+interface IDirectDraw;
+interface IDirectDrawSurface;
+interface IDirectDrawPalette;
+
+interface IDirectDrawMediaStream;
+interface IDirectDrawStreamSample;
+
+// IDirectDrawMediaStream
+[
+object,
+local,
+uuid(F4104FCE-9A70-11d0-8FDE-00C04FD9189D),
+pointer_default(unique)
+]
+interface IDirectDrawMediaStream : IMediaStream
+{
+ HRESULT GetFormat(
+ [out] DDSURFACEDESC *pDDSDCurrent,
+ [out] IDirectDrawPalette **ppDirectDrawPalette,
+ [out] DDSURFACEDESC *pDDSDDesired,
+ [out] DWORD *pdwFlags);
+
+ HRESULT SetFormat(
+ [in] const DDSURFACEDESC *pDDSurfaceDesc,
+ [in] IDirectDrawPalette *pDirectDrawPalette);
+
+ HRESULT GetDirectDraw(
+ [out] IDirectDraw **ppDirectDraw);
+
+ HRESULT SetDirectDraw(
+ [in] IDirectDraw *pDirectDraw);
+
+ HRESULT CreateSample(
+ [in] IDirectDrawSurface *pSurface,
+ [in] const RECT *pRect,
+ [in] DWORD dwFlags,
+ [out]IDirectDrawStreamSample **ppSample);
+
+ HRESULT GetTimePerFrame(
+ [out] STREAM_TIME *pFrameTime);
+};
+
+
+// IDirectDrawStreamSample
+[
+object,
+local,
+uuid(F4104FCF-9A70-11d0-8FDE-00C04FD9189D),
+pointer_default(unique)
+]
+interface IDirectDrawStreamSample : IStreamSample
+{
+ HRESULT GetSurface(
+ [out] IDirectDrawSurface ** ppDirectDrawSurface,
+ [out] RECT * pRect);
+
+ HRESULT SetRect(
+ [in] const RECT * pRect);
+
+};