mirror of
https://github.com/reactos/reactos.git
synced 2025-05-03 21:00:15 +00:00
[DXSDK]
* Update axextend.idl. svn path=/trunk/; revision=62800
This commit is contained in:
parent
ad56db3061
commit
f5406f85f2
1 changed files with 117 additions and 0 deletions
|
@ -22,6 +22,7 @@ interface IAMAudioInputMixer;
|
|||
interface IAMAudioRendererStats;
|
||||
interface IAMBufferNegotiation;
|
||||
interface IAMCameraControl;
|
||||
interface IAMCertifiedOutputProtection;
|
||||
interface IAMCopyCaptureFileProgress;
|
||||
interface IAMCrossbar;
|
||||
interface IAMDevMemoryAllocator;
|
||||
|
@ -746,6 +747,122 @@ interface ICaptureGraphBuilder2 : IUnknown
|
|||
[out] IPin **ppPin);
|
||||
}
|
||||
|
||||
[
|
||||
local,
|
||||
object,
|
||||
uuid(5acd6aa0-f482-11ce-8b67-00aa00a3f1a6),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IConfigAviMux : IUnknown
|
||||
{
|
||||
HRESULT SetMasterStream(
|
||||
[in] LONG iStream);
|
||||
|
||||
HRESULT GetMasterStream(
|
||||
[out] LONG *pStream);
|
||||
|
||||
HRESULT SetOutputCompatibilityIndex(
|
||||
[in] BOOL fOldIndex);
|
||||
|
||||
HRESULT GetOutputCompatibilityIndex(
|
||||
[out] BOOL *pfOldIndex);
|
||||
}
|
||||
|
||||
[
|
||||
local,
|
||||
object,
|
||||
uuid(bee3d220-157b-11d0-bd23-00a0c911ce86),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IConfigInterleaving : IUnknown
|
||||
{
|
||||
typedef enum InterleavingMode {
|
||||
INTERLEAVE_NONE,
|
||||
INTERLEAVE_CAPTURE,
|
||||
INTERLEAVE_FULL,
|
||||
INTERLEAVE_NONE_BUFFERED
|
||||
} InterleavingMode;
|
||||
|
||||
HRESULT put_Mode(
|
||||
[in] InterleavingMode mode);
|
||||
|
||||
HRESULT get_Mode(
|
||||
[out] InterleavingMode *pMode);
|
||||
|
||||
HRESULT put_Interleaving(
|
||||
[in] const REFERENCE_TIME *prtInterleave,
|
||||
[in] const REFERENCE_TIME *prtPreroll);
|
||||
|
||||
HRESULT get_Interleaving(
|
||||
[out] REFERENCE_TIME *prtInterleave,
|
||||
[out] REFERENCE_TIME *prtPreroll);
|
||||
}
|
||||
|
||||
[
|
||||
local,
|
||||
object,
|
||||
uuid(9fd52741-176d-4b36-8f51-ca8f933223be),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IAMClockSlave : IUnknown
|
||||
{
|
||||
HRESULT SetErrorTolerance(
|
||||
[in] DWORD dwTolerance);
|
||||
|
||||
HRESULT GetErrorTolerance(
|
||||
[out] DWORD *pdwTolerance);
|
||||
}
|
||||
|
||||
typedef struct _AMCOPPSignature {
|
||||
BYTE Signature[256];
|
||||
} AMCOPPSignature;
|
||||
|
||||
typedef struct _AMCOPPCommand {
|
||||
GUID macKDI;
|
||||
GUID guidCommandID;
|
||||
DWORD dwSequence;
|
||||
DWORD bSizeData;
|
||||
BYTE CommandData[4056];
|
||||
} AMCOPPCommand, *LPAMCOPPCommand;
|
||||
|
||||
typedef struct _AMCOPPStatusInput {
|
||||
GUID rApp;
|
||||
GUID guidStatusRequestID;
|
||||
DWORD dwSequence;
|
||||
DWORD cbSizeData;
|
||||
BYTE StatusData[4056];
|
||||
} AMCOPPStatusInput, *LPAMCOPPStatusInput;
|
||||
|
||||
typedef struct _AMCOPPStatusOutput {
|
||||
GUID macKDI;
|
||||
DWORD cbSizeData;
|
||||
BYTE COPPStatus[4076];
|
||||
} AMCOPPStatusOutput, *LPAMCOPPStatusOutput;
|
||||
|
||||
[
|
||||
local,
|
||||
object,
|
||||
uuid(6feded3e-0ff1-4901-a2f1-43f7012c8515),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IAMCertifiedOutputProtection : IUnknown
|
||||
{
|
||||
HRESULT KeyExchange (
|
||||
[out] GUID* pRandom,
|
||||
[out] BYTE** VarLenCertGH,
|
||||
[out] DWORD* pdwLengthCertGH);
|
||||
|
||||
HRESULT SessionSequenceStart(
|
||||
[in] AMCOPPSignature* pSig);
|
||||
|
||||
HRESULT ProtectionCommand(
|
||||
[in] const AMCOPPCommand* cmd);
|
||||
|
||||
HRESULT ProtectionStatus(
|
||||
[in] const AMCOPPStatusInput* pStatusInput,
|
||||
[out] AMCOPPStatusOutput* pStatusOutput);
|
||||
};
|
||||
|
||||
enum _AM_RENSDEREXFLAGS
|
||||
{
|
||||
AM_RENDEREX_RENDERTOEXISTINGRENDERERS = 0x01
|
||||
|
|
Loading…
Reference in a new issue