403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/CastingInterop.h

/* this ALWAYS GENERATED file contains the definitions for the interfaces */


 /* File created by MIDL compiler version 8.01.0622 */
/* @@MIDL_FILE_HEADING(  ) */



/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 500
#endif

/* verify that the <rpcsal.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCSAL_H_VERSION__
#define __REQUIRED_RPCSAL_H_VERSION__ 100
#endif

#include "rpc.h"
#include "rpcndr.h"

#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif /* __RPCNDR_H_VERSION__ */

#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/

#ifndef __castinginterop_h__
#define __castinginterop_h__

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

/* Forward Declarations */ 

#ifndef __ICastingEventHandler_FWD_DEFINED__
#define __ICastingEventHandler_FWD_DEFINED__
typedef interface ICastingEventHandler ICastingEventHandler;

#endif 	/* __ICastingEventHandler_FWD_DEFINED__ */


#ifndef __ICastingController_FWD_DEFINED__
#define __ICastingController_FWD_DEFINED__
typedef interface ICastingController ICastingController;

#endif 	/* __ICastingController_FWD_DEFINED__ */


#ifndef __ICastingSourceInfo_FWD_DEFINED__
#define __ICastingSourceInfo_FWD_DEFINED__
typedef interface ICastingSourceInfo ICastingSourceInfo;

#endif 	/* __ICastingSourceInfo_FWD_DEFINED__ */


/* header files for imported files */
#include "objidl.h"
#include "propsys.h"
#include "EventToken.h"

#ifdef __cplusplus
extern "C"{
#endif 


/* interface __MIDL_itf_castinginterop_0000_0000 */
/* [local] */ 

#if (NTDDI_VERSION >= NTDDI_WINTHRESHOLD)
extern const __declspec(selectany) WCHAR CastingSourceInfo_Property_PreferredSourceUriScheme[] = L"PreferredSourceUriScheme";
extern const __declspec(selectany) WCHAR CastingSourceInfo_Property_CastingTypes[] = L"CastingTypes";
extern const __declspec(selectany) WCHAR CastingSourceInfo_Property_ProtectedMedia[] = L"ProtectedMedia";
typedef 
enum CASTING_CONNECTION_ERROR_STATUS
    {
        CASTING_CONNECTION_ERROR_STATUS_SUCCEEDED	= 0,
        CASTING_CONNECTION_ERROR_STATUS_DEVICE_DID_NOT_RESPOND	= 1,
        CASTING_CONNECTION_ERROR_STATUS_DEVICE_ERROR	= 2,
        CASTING_CONNECTION_ERROR_STATUS_DEVICE_LOCKED	= 3,
        CASTING_CONNECTION_ERROR_STATUS_PROTECTED_PLAYBACK_FAILED	= 4,
        CASTING_CONNECTION_ERROR_STATUS_INVALID_CASTING_SOURCE	= 5,
        CASTING_CONNECTION_ERROR_STATUS_UNKNOWN	= 6
    } 	CASTING_CONNECTION_ERROR_STATUS;

typedef 
enum CASTING_CONNECTION_STATE
    {
        CASTING_CONNECTION_STATE_DISCONNECTED	= 0,
        CASTING_CONNECTION_STATE_CONNECTED	= 1,
        CASTING_CONNECTION_STATE_RENDERING	= 2,
        CASTING_CONNECTION_STATE_DISCONNECTING	= 3,
        CASTING_CONNECTION_STATE_CONNECTING	= 4
    } 	CASTING_CONNECTION_STATE;



extern RPC_IF_HANDLE __MIDL_itf_castinginterop_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_castinginterop_0000_0000_v0_0_s_ifspec;

#ifndef __ICastingEventHandler_INTERFACE_DEFINED__
#define __ICastingEventHandler_INTERFACE_DEFINED__

/* interface ICastingEventHandler */
/* [object][uuid] */ 


EXTERN_C const IID IID_ICastingEventHandler;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("C79A6CB7-BEBD-47a6-A2AD-4D45AD79C7BC")
    ICastingEventHandler : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE OnStateChanged( 
            /* [in] */ CASTING_CONNECTION_STATE newState) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE OnError( 
            /* [in] */ CASTING_CONNECTION_ERROR_STATUS errorStatus,
            /* [in] */ __RPC__in LPCWSTR errorMessage) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ICastingEventHandlerVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            __RPC__in ICastingEventHandler * This,
            /* [in] */ __RPC__in REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            __RPC__in ICastingEventHandler * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            __RPC__in ICastingEventHandler * This);
        
        HRESULT ( STDMETHODCALLTYPE *OnStateChanged )( 
            __RPC__in ICastingEventHandler * This,
            /* [in] */ CASTING_CONNECTION_STATE newState);
        
        HRESULT ( STDMETHODCALLTYPE *OnError )( 
            __RPC__in ICastingEventHandler * This,
            /* [in] */ CASTING_CONNECTION_ERROR_STATUS errorStatus,
            /* [in] */ __RPC__in LPCWSTR errorMessage);
        
        END_INTERFACE
    } ICastingEventHandlerVtbl;

    interface ICastingEventHandler
    {
        CONST_VTBL struct ICastingEventHandlerVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ICastingEventHandler_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ICastingEventHandler_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ICastingEventHandler_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ICastingEventHandler_OnStateChanged(This,newState)	\
    ( (This)->lpVtbl -> OnStateChanged(This,newState) ) 

#define ICastingEventHandler_OnError(This,errorStatus,errorMessage)	\
    ( (This)->lpVtbl -> OnError(This,errorStatus,errorMessage) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ICastingEventHandler_INTERFACE_DEFINED__ */


#ifndef __ICastingController_INTERFACE_DEFINED__
#define __ICastingController_INTERFACE_DEFINED__

/* interface ICastingController */
/* [object][uuid] */ 


EXTERN_C const IID IID_ICastingController;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("F0A56423-A664-4fbd-8B43-409A45E8D9A1")
    ICastingController : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE Initialize( 
            /* [in] */ __RPC__in_opt IUnknown *castingEngine,
            /* [in] */ __RPC__in_opt IUnknown *castingSource) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE Connect( void) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE Disconnect( void) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE Advise( 
            /* [in] */ __RPC__in_opt ICastingEventHandler *eventHandler,
            /* [out] */ __RPC__out DWORD *cookie) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE UnAdvise( 
            /* [in] */ DWORD cookie) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ICastingControllerVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            __RPC__in ICastingController * This,
            /* [in] */ __RPC__in REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            __RPC__in ICastingController * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            __RPC__in ICastingController * This);
        
        HRESULT ( STDMETHODCALLTYPE *Initialize )( 
            __RPC__in ICastingController * This,
            /* [in] */ __RPC__in_opt IUnknown *castingEngine,
            /* [in] */ __RPC__in_opt IUnknown *castingSource);
        
        HRESULT ( STDMETHODCALLTYPE *Connect )( 
            __RPC__in ICastingController * This);
        
        HRESULT ( STDMETHODCALLTYPE *Disconnect )( 
            __RPC__in ICastingController * This);
        
        HRESULT ( STDMETHODCALLTYPE *Advise )( 
            __RPC__in ICastingController * This,
            /* [in] */ __RPC__in_opt ICastingEventHandler *eventHandler,
            /* [out] */ __RPC__out DWORD *cookie);
        
        HRESULT ( STDMETHODCALLTYPE *UnAdvise )( 
            __RPC__in ICastingController * This,
            /* [in] */ DWORD cookie);
        
        END_INTERFACE
    } ICastingControllerVtbl;

    interface ICastingController
    {
        CONST_VTBL struct ICastingControllerVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ICastingController_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ICastingController_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ICastingController_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ICastingController_Initialize(This,castingEngine,castingSource)	\
    ( (This)->lpVtbl -> Initialize(This,castingEngine,castingSource) ) 

#define ICastingController_Connect(This)	\
    ( (This)->lpVtbl -> Connect(This) ) 

#define ICastingController_Disconnect(This)	\
    ( (This)->lpVtbl -> Disconnect(This) ) 

#define ICastingController_Advise(This,eventHandler,cookie)	\
    ( (This)->lpVtbl -> Advise(This,eventHandler,cookie) ) 

#define ICastingController_UnAdvise(This,cookie)	\
    ( (This)->lpVtbl -> UnAdvise(This,cookie) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ICastingController_INTERFACE_DEFINED__ */


#ifndef __ICastingSourceInfo_INTERFACE_DEFINED__
#define __ICastingSourceInfo_INTERFACE_DEFINED__

/* interface ICastingSourceInfo */
/* [object][uuid] */ 


EXTERN_C const IID IID_ICastingSourceInfo;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("45101AB7-7C3A-4bce-9500-12C09024B298")
    ICastingSourceInfo : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetController( 
            /* [out] */ __RPC__deref_out_opt ICastingController **controller) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetProperties( 
            /* [out] */ __RPC__deref_out_opt INamedPropertyStore **props) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ICastingSourceInfoVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            __RPC__in ICastingSourceInfo * This,
            /* [in] */ __RPC__in REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            __RPC__in ICastingSourceInfo * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            __RPC__in ICastingSourceInfo * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetController )( 
            __RPC__in ICastingSourceInfo * This,
            /* [out] */ __RPC__deref_out_opt ICastingController **controller);
        
        HRESULT ( STDMETHODCALLTYPE *GetProperties )( 
            __RPC__in ICastingSourceInfo * This,
            /* [out] */ __RPC__deref_out_opt INamedPropertyStore **props);
        
        END_INTERFACE
    } ICastingSourceInfoVtbl;

    interface ICastingSourceInfo
    {
        CONST_VTBL struct ICastingSourceInfoVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ICastingSourceInfo_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ICastingSourceInfo_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ICastingSourceInfo_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ICastingSourceInfo_GetController(This,controller)	\
    ( (This)->lpVtbl -> GetController(This,controller) ) 

#define ICastingSourceInfo_GetProperties(This,props)	\
    ( (This)->lpVtbl -> GetProperties(This,props) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ICastingSourceInfo_INTERFACE_DEFINED__ */


/* interface __MIDL_itf_castinginterop_0000_0003 */
/* [local] */ 

#endif //(NTDDI_VERSION >= NTDDI_WINTHRESHOLD)


extern RPC_IF_HANDLE __MIDL_itf_castinginterop_0000_0003_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_castinginterop_0000_0003_v0_0_s_ifspec;

/* Additional Prototypes for ALL interfaces */

/* end of Additional Prototypes */

#ifdef __cplusplus
}
#endif

#endif



Youez - 2016 - github.com/yon3zu
LinuXploit