mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-23 09:54:39 +08:00
uiviewsettingsinterop.idl: Added new file.
This commit is contained in:
parent
21c9cbf172
commit
6c75bd3777
@ -146,6 +146,7 @@ IDL_SRCS = \
|
||||
include/textstor.idl \
|
||||
include/uiautomationclient.idl \
|
||||
include/uiautomationcore.idl \
|
||||
include/uiviewsettingsinterop.idl \
|
||||
include/unknwn.idl \
|
||||
include/unknwnbase.idl \
|
||||
include/urlmon.idl \
|
||||
|
@ -370,6 +370,7 @@ EXTRA_HEADERS = \
|
||||
@HAVE_WIDL_TRUE@ include/textstor.idl \
|
||||
@HAVE_WIDL_TRUE@ include/uiautomationclient.idl \
|
||||
@HAVE_WIDL_TRUE@ include/uiautomationcore.idl \
|
||||
@HAVE_WIDL_TRUE@ include/uiviewsettingsinterop.idl \
|
||||
@HAVE_WIDL_TRUE@ include/unknwn.idl \
|
||||
@HAVE_WIDL_TRUE@ include/unknwnbase.idl \
|
||||
@HAVE_WIDL_TRUE@ include/urlmon.idl \
|
||||
|
164
mingw-w64-headers/include/uiviewsettingsinterop.h
Normal file
164
mingw-w64-headers/include/uiviewsettingsinterop.h
Normal file
@ -0,0 +1,164 @@
|
||||
/*** Autogenerated by WIDL 1.6 from include/uiviewsettingsinterop.idl - Do not edit ***/
|
||||
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
#define __REQUIRED_RPCNDR_H_VERSION__ 475
|
||||
#endif
|
||||
|
||||
#include <rpc.h>
|
||||
#include <rpcndr.h>
|
||||
|
||||
#ifndef COM_NO_WINDOWS_H
|
||||
#include <windows.h>
|
||||
#include <ole2.h>
|
||||
#endif
|
||||
|
||||
#ifndef __uiviewsettingsinterop_h__
|
||||
#define __uiviewsettingsinterop_h__
|
||||
|
||||
/* Forward declarations */
|
||||
|
||||
#ifndef __IUIViewSettingsInterop_FWD_DEFINED__
|
||||
#define __IUIViewSettingsInterop_FWD_DEFINED__
|
||||
typedef interface IUIViewSettingsInterop IUIViewSettingsInterop;
|
||||
#endif
|
||||
|
||||
/* Headers for imported files */
|
||||
|
||||
#include <inspectable.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*****************************************************************************
|
||||
* IUIViewSettingsInterop interface
|
||||
*/
|
||||
#ifndef __IUIViewSettingsInterop_INTERFACE_DEFINED__
|
||||
#define __IUIViewSettingsInterop_INTERFACE_DEFINED__
|
||||
|
||||
DEFINE_GUID(IID_IUIViewSettingsInterop, 0x3694dbf9, 0x8f68, 0x44be, 0x8f,0xf5, 0x19,0x5c,0x98,0xed,0xe8,0xa6);
|
||||
#if defined(__cplusplus) && !defined(CINTERFACE)
|
||||
MIDL_INTERFACE("3694dbf9-8f68-44be-8ff5-195c98ede8a6")
|
||||
IUIViewSettingsInterop : public IInspectable
|
||||
{
|
||||
virtual HRESULT STDMETHODCALLTYPE GetForWindow(
|
||||
HWND hwnd,
|
||||
REFIID riid,
|
||||
void **ppv) = 0;
|
||||
|
||||
};
|
||||
#ifdef __CRT_UUID_DECL
|
||||
__CRT_UUID_DECL(IUIViewSettingsInterop, 0x3694dbf9, 0x8f68, 0x44be, 0x8f,0xf5, 0x19,0x5c,0x98,0xed,0xe8,0xa6)
|
||||
#endif
|
||||
#else
|
||||
typedef struct IUIViewSettingsInteropVtbl {
|
||||
BEGIN_INTERFACE
|
||||
|
||||
/*** IUnknown methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
|
||||
IUIViewSettingsInterop* This,
|
||||
REFIID riid,
|
||||
void **ppvObject);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *AddRef)(
|
||||
IUIViewSettingsInterop* This);
|
||||
|
||||
ULONG (STDMETHODCALLTYPE *Release)(
|
||||
IUIViewSettingsInterop* This);
|
||||
|
||||
/*** IInspectable methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *GetIids)(
|
||||
IUIViewSettingsInterop* This,
|
||||
ULONG *iidCount,
|
||||
IID **iids);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *GetRuntimeClassName)(
|
||||
IUIViewSettingsInterop* This,
|
||||
HSTRING *className);
|
||||
|
||||
HRESULT (STDMETHODCALLTYPE *GetTrustLevel)(
|
||||
IUIViewSettingsInterop* This,
|
||||
TrustLevel *trustLevel);
|
||||
|
||||
/*** IUIViewSettingsInterop methods ***/
|
||||
HRESULT (STDMETHODCALLTYPE *GetForWindow)(
|
||||
IUIViewSettingsInterop* This,
|
||||
HWND hwnd,
|
||||
REFIID riid,
|
||||
void **ppv);
|
||||
|
||||
END_INTERFACE
|
||||
} IUIViewSettingsInteropVtbl;
|
||||
interface IUIViewSettingsInterop {
|
||||
CONST_VTBL IUIViewSettingsInteropVtbl* lpVtbl;
|
||||
};
|
||||
|
||||
#ifdef COBJMACROS
|
||||
#ifndef WIDL_C_INLINE_WRAPPERS
|
||||
/*** IUnknown methods ***/
|
||||
#define IUIViewSettingsInterop_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
|
||||
#define IUIViewSettingsInterop_AddRef(This) (This)->lpVtbl->AddRef(This)
|
||||
#define IUIViewSettingsInterop_Release(This) (This)->lpVtbl->Release(This)
|
||||
/*** IInspectable methods ***/
|
||||
#define IUIViewSettingsInterop_GetIids(This,iidCount,iids) (This)->lpVtbl->GetIids(This,iidCount,iids)
|
||||
#define IUIViewSettingsInterop_GetRuntimeClassName(This,className) (This)->lpVtbl->GetRuntimeClassName(This,className)
|
||||
#define IUIViewSettingsInterop_GetTrustLevel(This,trustLevel) (This)->lpVtbl->GetTrustLevel(This,trustLevel)
|
||||
/*** IUIViewSettingsInterop methods ***/
|
||||
#define IUIViewSettingsInterop_GetForWindow(This,hwnd,riid,ppv) (This)->lpVtbl->GetForWindow(This,hwnd,riid,ppv)
|
||||
#else
|
||||
/*** IUnknown methods ***/
|
||||
static FORCEINLINE HRESULT IUIViewSettingsInterop_QueryInterface(IUIViewSettingsInterop* This,REFIID riid,void **ppvObject) {
|
||||
return This->lpVtbl->QueryInterface(This,riid,ppvObject);
|
||||
}
|
||||
static FORCEINLINE ULONG IUIViewSettingsInterop_AddRef(IUIViewSettingsInterop* This) {
|
||||
return This->lpVtbl->AddRef(This);
|
||||
}
|
||||
static FORCEINLINE ULONG IUIViewSettingsInterop_Release(IUIViewSettingsInterop* This) {
|
||||
return This->lpVtbl->Release(This);
|
||||
}
|
||||
/*** IInspectable methods ***/
|
||||
static FORCEINLINE HRESULT IUIViewSettingsInterop_GetIids(IUIViewSettingsInterop* This,ULONG *iidCount,IID **iids) {
|
||||
return This->lpVtbl->GetIids(This,iidCount,iids);
|
||||
}
|
||||
static FORCEINLINE HRESULT IUIViewSettingsInterop_GetRuntimeClassName(IUIViewSettingsInterop* This,HSTRING *className) {
|
||||
return This->lpVtbl->GetRuntimeClassName(This,className);
|
||||
}
|
||||
static FORCEINLINE HRESULT IUIViewSettingsInterop_GetTrustLevel(IUIViewSettingsInterop* This,TrustLevel *trustLevel) {
|
||||
return This->lpVtbl->GetTrustLevel(This,trustLevel);
|
||||
}
|
||||
/*** IUIViewSettingsInterop methods ***/
|
||||
static FORCEINLINE HRESULT IUIViewSettingsInterop_GetForWindow(IUIViewSettingsInterop* This,HWND hwnd,REFIID riid,void **ppv) {
|
||||
return This->lpVtbl->GetForWindow(This,hwnd,riid,ppv);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
HRESULT STDMETHODCALLTYPE IUIViewSettingsInterop_GetForWindow_Proxy(
|
||||
IUIViewSettingsInterop* This,
|
||||
HWND hwnd,
|
||||
REFIID riid,
|
||||
void **ppv);
|
||||
void __RPC_STUB IUIViewSettingsInterop_GetForWindow_Stub(
|
||||
IRpcStubBuffer* This,
|
||||
IRpcChannelBuffer* pRpcChannelBuffer,
|
||||
PRPC_MESSAGE pRpcMessage,
|
||||
DWORD* pdwStubPhase);
|
||||
|
||||
#endif /* __IUIViewSettingsInterop_INTERFACE_DEFINED__ */
|
||||
|
||||
/* Begin additional prototypes for all interfaces */
|
||||
|
||||
ULONG __RPC_USER HWND_UserSize (ULONG *, ULONG, HWND *);
|
||||
unsigned char * __RPC_USER HWND_UserMarshal (ULONG *, unsigned char *, HWND *);
|
||||
unsigned char * __RPC_USER HWND_UserUnmarshal(ULONG *, unsigned char *, HWND *);
|
||||
void __RPC_USER HWND_UserFree (ULONG *, HWND *);
|
||||
|
||||
/* End additional prototypes */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __uiviewsettingsinterop_h__ */
|
15
mingw-w64-headers/include/uiviewsettingsinterop.idl
Normal file
15
mingw-w64-headers/include/uiviewsettingsinterop.idl
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the mingw-w64 runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
|
||||
import "inspectable.idl";
|
||||
|
||||
[
|
||||
uuid(3694dbf9-8f68-44be-8ff5-195c98ede8a6),
|
||||
]
|
||||
interface IUIViewSettingsInterop : IInspectable
|
||||
{
|
||||
HRESULT GetForWindow([in] HWND hwnd, [in] REFIID riid, [out, retval, iid_is(riid)] void **ppv);
|
||||
}
|
Loading…
Reference in New Issue
Block a user