3 instantiations of HRESULT
Microsoft.Private.Windows.Core (3)
Windows.Win32.HRESULT.g.cs (2)
37
public static explicit operator HRESULT(int value) => new
HRESULT
(value);
54
public static explicit operator HRESULT(uint value) => new
HRESULT
((int)value);
Windows\Win32\Foundation\HRESULT.cs (1)
50
: new
HRESULT
(((int)error & 0x0000FFFF) | unchecked((int)0x80070000));
2112 references to HRESULT
Microsoft.Private.Windows.Core (2112)
System\IO\StreamExtensions.cs (7)
26
/// <returns><see cref="
HRESULT
.S_OK"/> if successful.</returns>
27
internal static unsafe
HRESULT
SaveStreamToHGLOBAL(this Stream stream, ref HGLOBAL hglobal)
36
return
HRESULT
.E_OUTOFMEMORY;
45
return
HRESULT
.S_OK;
51
return
HRESULT
.E_OUTOFMEMORY;
57
return
HRESULT
.E_OUTOFMEMORY;
71
return
HRESULT
.S_OK;
System\Private\Windows\Ole\ClipboardCore.cs (15)
36
/// <returns>An <see cref="
HRESULT
"/> indicating the success or failure of the operation.</returns>
37
internal static
HRESULT
Clear(
47
HRESULT
result;
70
/// <returns>An <see cref="
HRESULT
"/> indicating the success or failure of the operation.</returns>
71
internal static
HRESULT
Flush(
81
HRESULT
result;
108
/// <returns>An <see cref="
HRESULT
"/> indicating the success or failure of the operation.</returns>
109
internal static
HRESULT
SetData(
126
HRESULT
result;
168
/// <returns>An <see cref="
HRESULT
"/> indicating the success or failure of the operation.</returns>
170
internal static
HRESULT
TryGetData(
186
HRESULT
result;
247
HRESULT
result = TryGetData(
263
internal static
HRESULT
GetDataObject<TDataObject, TIDataObject>(
272
HRESULT
result = TryGetData(
System\Private\Windows\Ole\Composition.cs (9)
208
public
HRESULT
DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => _nativeDataObject.DAdvise(pformatetc, advf, pAdvSink, pdwConnection);
209
public
HRESULT
DUnadvise(uint dwConnection) => _nativeDataObject.DUnadvise(dwConnection);
210
public
HRESULT
EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => _nativeDataObject.EnumDAdvise(ppenumAdvise);
211
public
HRESULT
EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => _nativeDataObject.EnumFormatEtc(dwDirection, ppenumFormatEtc);
212
public
HRESULT
GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => _nativeDataObject.GetCanonicalFormatEtc(pformatectIn, pformatetcOut);
213
public
HRESULT
GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _nativeDataObject.GetData(pformatetcIn, pmedium);
214
public
HRESULT
GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => _nativeDataObject.GetDataHere(pformatetc, pmedium);
215
public
HRESULT
QueryGetData(FORMATETC* pformatetc) => _nativeDataObject.QueryGetData(pformatetc);
216
public
HRESULT
SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _nativeDataObject.SetData(pformatetc, pmedium, fRelease);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (56)
41
public
HRESULT
GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium)
45
return
HRESULT
.DV_E_FORMATETC;
50
return
HRESULT
.E_POINTER;
59
return
HRESULT
.S_OK;
65
return
HRESULT
.S_OK;
73
return
HRESULT
.DV_E_TYMED;
87
return
HRESULT
.E_OUTOFMEMORY;
90
HRESULT
result = GetDataHere(pformatetcIn, pmedium);
100
public
HRESULT
GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium)
104
return
HRESULT
.DV_E_FORMATETC;
109
return
HRESULT
.E_POINTER;
114
return
HRESULT
.DV_E_TYMED;
121
return
HRESULT
.DV_E_FORMATETC;
126
return
HRESULT
.E_UNEXPECTED;
133
HRESULT
result = SaveDataToHGLOBAL(data, format, ref *pmedium);
134
if (result !=
HRESULT
.E_UNEXPECTED)
162
public
HRESULT
QueryGetData(FORMATETC* pformatetc)
166
return
HRESULT
.DV_E_FORMATETC;
171
return
HRESULT
.DV_E_DVASPECT;
176
return
HRESULT
.DV_E_TYMED;
181
return
HRESULT
.S_FALSE;
186
return
HRESULT
.DV_E_FORMATETC;
189
return
HRESULT
.S_OK;
192
public
HRESULT
GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut)
196
return
HRESULT
.E_POINTER;
200
return (
HRESULT
)DATA_S_SAMEFORMATETC;
203
public
HRESULT
SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease)
207
return
HRESULT
.DV_E_FORMATETC;
212
return
HRESULT
.E_POINTER;
228
return
HRESULT
.S_OK;
231
return
HRESULT
.E_NOTIMPL;
234
public
HRESULT
EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc)
238
return
HRESULT
.E_POINTER;
247
return
HRESULT
.S_OK;
250
return
HRESULT
.E_NOTIMPL;
253
public
HRESULT
DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection)
257
return
HRESULT
.E_POINTER;
261
return
HRESULT
.E_NOTIMPL;
264
public
HRESULT
DUnadvise(uint dwConnection) =>
HRESULT
.E_NOTIMPL;
266
public
HRESULT
EnumDAdvise(IEnumSTATDATA** ppenumAdvise)
270
return
HRESULT
.E_POINTER;
274
return
HRESULT
.OLE_E_ADVISENOTSUPPORTED;
278
private
HRESULT
SaveDataToHGLOBAL(object data, string format, ref STGMEDIUM medium)
300
_ =>
HRESULT
.E_UNEXPECTED
303
static
HRESULT
SaveObjectToHGLOBAL(ref HGLOBAL hglobal, object data, string format)
315
static
HRESULT
SaveFileListToHGLOBAL(HGLOBAL hglobal, string[] files)
319
return
HRESULT
.S_OK;
324
return
HRESULT
.E_INVALIDARG;
373
return
HRESULT
.S_OK;
376
static
HRESULT
SaveDbcsToHGLOBAL(HGLOBAL hglobal, string value)
391
return
HRESULT
.S_OK;
394
static
HRESULT
SaveUtf16ToHGLOBAL(HGLOBAL hglobal, string value)
410
return
HRESULT
.S_OK;
413
static
HRESULT
SaveUtf8ToHGLOBAL(HGLOBAL hglobal, string value)
430
return
HRESULT
.S_OK;
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (18)
34
public
HRESULT
DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection)
40
public
HRESULT
DUnadvise(uint dwConnection)
46
public
HRESULT
EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise)
52
public
HRESULT
EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc)
58
public
HRESULT
GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium)
64
public
HRESULT
GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium)
70
public
HRESULT
QueryGetData(Com.FORMATETC* pformatetc)
76
public
HRESULT
GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut)
82
public
HRESULT
SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease)
144
throw new ExternalException(SR.ExternalException, (int)
HRESULT
.E_OUTOFMEMORY);
376
HRESULT
hr = dataObject->GetData(formatetc, out Com.STGMEDIUM medium);
382
Debug.WriteLineIf(hr ==
HRESULT
.CLIPBRD_E_BAD_DATA, "CLIPBRD_E_BAD_DATA returned when trying to get clipboard data.");
383
Debug.WriteLineIf(hr ==
HRESULT
.DV_E_TYMED, "DV_E_TYMED returned when trying to get clipboard data.");
385
Debug.WriteLineIf(hr ==
HRESULT
.E_UNEXPECTED, "E_UNEXPECTED returned when trying to get clipboard data.");
386
Debug.WriteLineIf(hr ==
HRESULT
.COR_E_SERIALIZATION,
651
while (enumFORMATETC.Value->Next(1, &formatEtc) ==
HRESULT
.S_OK)
732
HRESULT
hr = nativeDataObject.Value->QueryGetData(formatEtc);
735
return hr ==
HRESULT
.S_OK;
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (4)
48
HRESULT
result = nativeDataObject.Value->EnumDAdvise(nativeStatData);
59
throw new ExternalException(SR.ExternalException, (int)
HRESULT
.E_NOTIMPL);
68
HRESULT
result = nativeDataObject.Value->GetCanonicalFormatEtc(Unsafe.As<FORMATETC, Com.FORMATETC>(ref formatIn), out Com.FORMATETC nativeFormat);
104
HRESULT
result = nativeDataObject.Value->SetData(&nativeFormat, &nativeMedium, release);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (31)
38
HRESULT
Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection)
41
return (
HRESULT
)DAdvise(ref *(FORMATETC*)pformatetc, (ADVF)advf, adviseSink, out *(int*)pdwConnection);
44
HRESULT
Com.IDataObject.Interface.DUnadvise(uint dwConnection)
52
return (
HRESULT
)e.HResult;
55
return
HRESULT
.S_OK;
58
HRESULT
Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise)
62
return
HRESULT
.E_POINTER;
67
HRESULT
hr = (
HRESULT
)EnumDAdvise(out var enumAdvice);
74
return hr.Succeeded ? hr :
HRESULT
.E_NOINTERFACE;
77
HRESULT
Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc)
81
return
HRESULT
.E_POINTER;
85
*ppenumFormatEtc = ComHelpers.TryGetComPointer<Com.IEnumFORMATETC>(comTypeFormatEtc, out
HRESULT
hr);
86
return hr.Succeeded ?
HRESULT
.S_OK :
HRESULT
.E_NOINTERFACE;
89
HRESULT
Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) =>
90
(
HRESULT
)GetCanonicalFormatEtc(ref *(FORMATETC*)pformatectIn, out *(FORMATETC*)pformatetcOut);
92
HRESULT
Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium)
96
return
HRESULT
.E_POINTER;
103
return
HRESULT
.S_OK;
107
return (
HRESULT
)e.HResult;
111
HRESULT
Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium)
115
return
HRESULT
.E_POINTER;
125
return (
HRESULT
)e.HResult;
129
return
HRESULT
.S_OK;
132
HRESULT
Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => (
HRESULT
)QueryGetData(ref *(FORMATETC*)pformatetc);
134
HRESULT
Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease)
138
return
HRESULT
.E_POINTER;
148
return (
HRESULT
)e.HResult;
151
return
HRESULT
.S_OK;
System\Private\Windows\Ole\DragDropHelper.cs (1)
459
HRESULT
hr = PInvokeCore.CoCreateInstance(
System\Private\Windows\Ole\FormatEnumerator.cs (15)
65
return (int)
HRESULT
.S_FALSE;
81
return (int)
HRESULT
.S_OK;
88
return (int)
HRESULT
.S_FALSE;
92
return (int)
HRESULT
.S_OK;
98
return (int)
HRESULT
.S_OK;
106
HRESULT
IEnumFORMATETC.Interface.Next(uint celt, FORMATETC* rgelt, uint* pceltFetched)
110
return
HRESULT
.E_POINTER;
129
return (
HRESULT
)result;
132
HRESULT
IEnumFORMATETC.Interface.Skip(uint celt) => (
HRESULT
)Skip((int)celt);
134
HRESULT
IEnumFORMATETC.Interface.Reset() => (
HRESULT
)Reset();
136
HRESULT
IEnumFORMATETC.Interface.Clone(IEnumFORMATETC** ppenum)
140
return
HRESULT
.E_POINTER;
145
return
HRESULT
.S_OK;
System\Private\Windows\Ole\IOleServices.cs (4)
36
HRESULT
GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium);
103
HRESULT
OleGetClipboard(IDataObject** dataObject);
109
HRESULT
OleSetClipboard(IDataObject* dataObject);
115
HRESULT
OleFlushClipboard();
Windows.Win32.EXCEPINFO.g.cs (1)
52
internal unsafe delegate *unmanaged[Stdcall]<global::Windows.Win32.System.Com.EXCEPINFO*,global::Windows.Win32.Foundation.
HRESULT
> pfnDeferredFillIn;
Windows.Win32.HRESULT.g.cs (333)
29
: IEquatable<
HRESULT
>
35
public static implicit operator int(
HRESULT
value) => value.Value;
37
public static explicit operator
HRESULT
(int value) => new HRESULT(value);
39
public static bool operator ==(
HRESULT
left,
HRESULT
right) => left.Value == right.Value;
41
public static bool operator !=(
HRESULT
left,
HRESULT
right) => !(left == right);
43
public bool Equals(
HRESULT
other) => this.Value == other.Value;
45
public override bool Equals(object obj) => obj is
HRESULT
other && this.Equals(other);
52
public static implicit operator uint(
HRESULT
value) => (uint)value.Value;
54
public static explicit operator
HRESULT
(uint value) => new HRESULT((int)value);
72
/// <returns><see langword="this"/> <see cref="
HRESULT
"/>, if it does not reflect an error.</returns>
74
internal
HRESULT
ThrowOnFailure(IntPtr errorInfo = default)
84
internal static readonly winmdroot.Foundation.
HRESULT
CLIPBRD_E_BAD_DATA = (winmdroot.Foundation.
HRESULT
)(-2147221037);
86
internal static readonly winmdroot.Foundation.
HRESULT
CLIPBRD_E_CANT_OPEN = (winmdroot.Foundation.
HRESULT
)(-2147221040);
88
internal static readonly winmdroot.Foundation.
HRESULT
DATA_S_SAMEFORMATETC = (winmdroot.Foundation.
HRESULT
)(262448);
90
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_ARRAYISLOCKED = (winmdroot.Foundation.
HRESULT
)(-2147352563);
92
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_BADCALLEE = (winmdroot.Foundation.
HRESULT
)(-2147352560);
94
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_BADINDEX = (winmdroot.Foundation.
HRESULT
)(-2147352565);
96
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_BADPARAMCOUNT = (winmdroot.Foundation.
HRESULT
)(-2147352562);
98
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_BADVARTYPE = (winmdroot.Foundation.
HRESULT
)(-2147352568);
100
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_BUFFERTOOSMALL = (winmdroot.Foundation.
HRESULT
)(-2147352557);
102
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_DIVBYZERO = (winmdroot.Foundation.
HRESULT
)(-2147352558);
104
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_EXCEPTION = (winmdroot.Foundation.
HRESULT
)(-2147352567);
106
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_MEMBERNOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2147352573);
108
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_NONAMEDARGS = (winmdroot.Foundation.
HRESULT
)(-2147352569);
110
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_NOTACOLLECTION = (winmdroot.Foundation.
HRESULT
)(-2147352559);
112
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_OVERFLOW = (winmdroot.Foundation.
HRESULT
)(-2147352566);
114
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_PARAMNOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2147352572);
116
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_PARAMNOTOPTIONAL = (winmdroot.Foundation.
HRESULT
)(-2147352561);
118
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_TYPEMISMATCH = (winmdroot.Foundation.
HRESULT
)(-2147352571);
120
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_UNKNOWNINTERFACE = (winmdroot.Foundation.
HRESULT
)(-2147352575);
122
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_UNKNOWNLCID = (winmdroot.Foundation.
HRESULT
)(-2147352564);
124
internal static readonly winmdroot.Foundation.
HRESULT
DISP_E_UNKNOWNNAME = (winmdroot.Foundation.
HRESULT
)(-2147352570);
126
internal static readonly winmdroot.Foundation.
HRESULT
DRAGDROP_E_ALREADYREGISTERED = (winmdroot.Foundation.
HRESULT
)(-2147221247);
128
internal static readonly winmdroot.Foundation.
HRESULT
DRAGDROP_E_NOTREGISTERED = (winmdroot.Foundation.
HRESULT
)(-2147221248);
130
internal static readonly winmdroot.Foundation.
HRESULT
DRAGDROP_S_CANCEL = (winmdroot.Foundation.
HRESULT
)(262401);
132
internal static readonly winmdroot.Foundation.
HRESULT
DRAGDROP_S_DROP = (winmdroot.Foundation.
HRESULT
)(262400);
134
internal static readonly winmdroot.Foundation.
HRESULT
DRAGDROP_S_USEDEFAULTCURSORS = (winmdroot.Foundation.
HRESULT
)(262402);
136
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_FORMATETC = (winmdroot.Foundation.
HRESULT
)(-2147221404);
138
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_DVTARGETDEVICE = (winmdroot.Foundation.
HRESULT
)(-2147221403);
140
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_STGMEDIUM = (winmdroot.Foundation.
HRESULT
)(-2147221402);
142
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_STATDATA = (winmdroot.Foundation.
HRESULT
)(-2147221401);
144
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_LINDEX = (winmdroot.Foundation.
HRESULT
)(-2147221400);
146
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_TYMED = (winmdroot.Foundation.
HRESULT
)(-2147221399);
148
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_CLIPFORMAT = (winmdroot.Foundation.
HRESULT
)(-2147221398);
150
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_DVASPECT = (winmdroot.Foundation.
HRESULT
)(-2147221397);
152
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_DVTARGETDEVICE_SIZE = (winmdroot.Foundation.
HRESULT
)(-2147221396);
154
internal static readonly winmdroot.Foundation.
HRESULT
DV_E_NOIVIEWOBJECT = (winmdroot.Foundation.
HRESULT
)(-2147221395);
156
internal static readonly winmdroot.Foundation.
HRESULT
E_ABORT = (winmdroot.Foundation.
HRESULT
)(-2147467260);
158
internal static readonly winmdroot.Foundation.
HRESULT
E_ACCESSDENIED = (winmdroot.Foundation.
HRESULT
)(-2147024891);
164
internal static readonly winmdroot.Foundation.
HRESULT
E_FAIL = (winmdroot.Foundation.
HRESULT
)(-2147467259);
166
internal static readonly winmdroot.Foundation.
HRESULT
E_HANDLE = (winmdroot.Foundation.
HRESULT
)(-2147024890);
169
internal static readonly winmdroot.Foundation.
HRESULT
E_INVALIDARG = (winmdroot.Foundation.
HRESULT
)(-2147024809);
171
internal static readonly winmdroot.Foundation.
HRESULT
E_NOINTERFACE = (winmdroot.Foundation.
HRESULT
)(-2147467262);
173
internal static readonly winmdroot.Foundation.
HRESULT
E_NOTIMPL = (winmdroot.Foundation.
HRESULT
)(-2147467263);
175
internal static readonly winmdroot.Foundation.
HRESULT
E_OUTOFMEMORY = (winmdroot.Foundation.
HRESULT
)(-2147024882);
177
internal static readonly winmdroot.Foundation.
HRESULT
E_PENDING = (winmdroot.Foundation.
HRESULT
)(-2147483638);
179
internal static readonly winmdroot.Foundation.
HRESULT
E_POINTER = (winmdroot.Foundation.
HRESULT
)(-2147467261);
181
internal static readonly winmdroot.Foundation.
HRESULT
E_UNEXPECTED = (winmdroot.Foundation.
HRESULT
)(-2147418113);
183
internal static readonly winmdroot.Foundation.
HRESULT
INPLACE_E_NOTOOLSPACE = (winmdroot.Foundation.
HRESULT
)(-2147221087);
185
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_CANNOT_FIND_FILE = (winmdroot.Foundation.
HRESULT
)(-1072885353);
187
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT = (winmdroot.Foundation.
HRESULT
)(-1072885350);
189
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_INVALID_ASX = (winmdroot.Foundation.
HRESULT
)(-1072885347);
191
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_LOGON_FAILURE = (winmdroot.Foundation.
HRESULT
)(-1072885354);
193
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_UNSUPPORTED_FORMAT = (winmdroot.Foundation.
HRESULT
)(-1072885351);
195
internal static readonly winmdroot.Foundation.
HRESULT
NS_E_WMP_URLDOWNLOADFAILED = (winmdroot.Foundation.
HRESULT
)(-1072885782);
197
internal static readonly winmdroot.Foundation.
HRESULT
OLE_E_ADVISENOTSUPPORTED = (winmdroot.Foundation.
HRESULT
)(-2147221501);
199
internal static readonly winmdroot.Foundation.
HRESULT
OLE_E_INVALIDRECT = (winmdroot.Foundation.
HRESULT
)(-2147221491);
201
internal static readonly winmdroot.Foundation.
HRESULT
OLE_E_NOCONNECTION = (winmdroot.Foundation.
HRESULT
)(-2147221500);
203
internal static readonly winmdroot.Foundation.
HRESULT
OLE_E_PROMPTSAVECANCELLED = (winmdroot.Foundation.
HRESULT
)(-2147221492);
205
internal static readonly winmdroot.Foundation.
HRESULT
OLECMDERR_E_DISABLED = (winmdroot.Foundation.
HRESULT
)(-2147221247);
207
internal static readonly winmdroot.Foundation.
HRESULT
OLECMDERR_E_UNKNOWNGROUP = (winmdroot.Foundation.
HRESULT
)(-2147221244);
209
internal static readonly winmdroot.Foundation.
HRESULT
REGDB_E_CLASSNOTREG = (winmdroot.Foundation.
HRESULT
)(-2147221164);
211
internal static readonly winmdroot.Foundation.
HRESULT
RPC_E_CHANGED_MODE = (winmdroot.Foundation.
HRESULT
)(-2147417850);
213
internal static readonly winmdroot.Foundation.
HRESULT
RPC_E_DISCONNECTED = (winmdroot.Foundation.
HRESULT
)(-2147417848);
215
internal static readonly winmdroot.Foundation.
HRESULT
RPC_E_SERVERFAULT = (winmdroot.Foundation.
HRESULT
)(-2147417851);
217
internal static readonly winmdroot.Foundation.
HRESULT
RPC_E_SYS_CALL_FAILED = (winmdroot.Foundation.
HRESULT
)(-2147417856);
219
internal static readonly winmdroot.Foundation.
HRESULT
S_FALSE = (winmdroot.Foundation.
HRESULT
)(1);
222
internal static readonly winmdroot.Foundation.
HRESULT
S_OK = (winmdroot.Foundation.
HRESULT
)(0);
224
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDFUNCTION = (winmdroot.Foundation.
HRESULT
)(-2147287039);
226
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_FILENOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2147287038);
228
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_PATHNOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2147287037);
230
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_TOOMANYOPENFILES = (winmdroot.Foundation.
HRESULT
)(-2147287036);
232
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_ACCESSDENIED = (winmdroot.Foundation.
HRESULT
)(-2147287035);
234
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDHANDLE = (winmdroot.Foundation.
HRESULT
)(-2147287034);
236
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INSUFFICIENTMEMORY = (winmdroot.Foundation.
HRESULT
)(-2147287032);
238
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDPOINTER = (winmdroot.Foundation.
HRESULT
)(-2147287031);
240
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_NOMOREFILES = (winmdroot.Foundation.
HRESULT
)(-2147287022);
242
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_DISKISWRITEPROTECTED = (winmdroot.Foundation.
HRESULT
)(-2147287021);
244
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_SEEKERROR = (winmdroot.Foundation.
HRESULT
)(-2147287015);
246
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_WRITEFAULT = (winmdroot.Foundation.
HRESULT
)(-2147287011);
248
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_READFAULT = (winmdroot.Foundation.
HRESULT
)(-2147287010);
250
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_SHAREVIOLATION = (winmdroot.Foundation.
HRESULT
)(-2147287008);
252
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_LOCKVIOLATION = (winmdroot.Foundation.
HRESULT
)(-2147287007);
254
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_FILEALREADYEXISTS = (winmdroot.Foundation.
HRESULT
)(-2147286960);
256
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDPARAMETER = (winmdroot.Foundation.
HRESULT
)(-2147286953);
258
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_MEDIUMFULL = (winmdroot.Foundation.
HRESULT
)(-2147286928);
260
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_PROPSETMISMATCHED = (winmdroot.Foundation.
HRESULT
)(-2147286800);
262
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_ABNORMALAPIEXIT = (winmdroot.Foundation.
HRESULT
)(-2147286790);
264
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDHEADER = (winmdroot.Foundation.
HRESULT
)(-2147286789);
266
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDNAME = (winmdroot.Foundation.
HRESULT
)(-2147286788);
268
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_UNKNOWN = (winmdroot.Foundation.
HRESULT
)(-2147286787);
270
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_UNIMPLEMENTEDFUNCTION = (winmdroot.Foundation.
HRESULT
)(-2147286786);
272
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INVALIDFLAG = (winmdroot.Foundation.
HRESULT
)(-2147286785);
274
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INUSE = (winmdroot.Foundation.
HRESULT
)(-2147286784);
276
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_NOTCURRENT = (winmdroot.Foundation.
HRESULT
)(-2147286783);
278
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_REVERTED = (winmdroot.Foundation.
HRESULT
)(-2147286782);
280
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CANTSAVE = (winmdroot.Foundation.
HRESULT
)(-2147286781);
282
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_OLDFORMAT = (winmdroot.Foundation.
HRESULT
)(-2147286780);
284
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_OLDDLL = (winmdroot.Foundation.
HRESULT
)(-2147286779);
286
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_SHAREREQUIRED = (winmdroot.Foundation.
HRESULT
)(-2147286778);
288
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_NOTFILEBASEDSTORAGE = (winmdroot.Foundation.
HRESULT
)(-2147286777);
290
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_EXTANTMARSHALLINGS = (winmdroot.Foundation.
HRESULT
)(-2147286776);
292
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_DOCFILECORRUPT = (winmdroot.Foundation.
HRESULT
)(-2147286775);
294
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_BADBASEADDRESS = (winmdroot.Foundation.
HRESULT
)(-2147286768);
296
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_DOCFILETOOLARGE = (winmdroot.Foundation.
HRESULT
)(-2147286767);
298
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_NOTSIMPLEFORMAT = (winmdroot.Foundation.
HRESULT
)(-2147286766);
300
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_INCOMPLETE = (winmdroot.Foundation.
HRESULT
)(-2147286527);
302
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_TERMINATED = (winmdroot.Foundation.
HRESULT
)(-2147286526);
304
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_FIRMWARE_SLOT_INVALID = (winmdroot.Foundation.
HRESULT
)(-2147286520);
306
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_FIRMWARE_IMAGE_INVALID = (winmdroot.Foundation.
HRESULT
)(-2147286519);
308
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_DEVICE_UNRESPONSIVE = (winmdroot.Foundation.
HRESULT
)(-2147286518);
310
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_STATUS_COPY_PROTECTION_FAILURE = (winmdroot.Foundation.
HRESULT
)(-2147286267);
312
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CSS_AUTHENTICATION_FAILURE = (winmdroot.Foundation.
HRESULT
)(-2147286266);
314
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CSS_KEY_NOT_PRESENT = (winmdroot.Foundation.
HRESULT
)(-2147286265);
316
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CSS_KEY_NOT_ESTABLISHED = (winmdroot.Foundation.
HRESULT
)(-2147286264);
318
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CSS_SCRAMBLED_SECTOR = (winmdroot.Foundation.
HRESULT
)(-2147286263);
320
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_CSS_REGION_MISMATCH = (winmdroot.Foundation.
HRESULT
)(-2147286262);
322
internal static readonly winmdroot.Foundation.
HRESULT
STG_E_RESETS_EXHAUSTED = (winmdroot.Foundation.
HRESULT
)(-2147286261);
324
internal static readonly winmdroot.Foundation.
HRESULT
TYPE_E_BADMODULEKIND = (winmdroot.Foundation.
HRESULT
)(-2147317571);
326
internal static readonly winmdroot.Foundation.
HRESULT
VIEW_E_DRAW = (winmdroot.Foundation.
HRESULT
)(-2147221184);
328
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_WRONGSTATE = (winmdroot.Foundation.
HRESULT
)(-2003292412);
330
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_VALUEOUTOFRANGE = (winmdroot.Foundation.
HRESULT
)(-2003292411);
332
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNKNOWNIMAGEFORMAT = (winmdroot.Foundation.
HRESULT
)(-2003292409);
334
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNSUPPORTEDVERSION = (winmdroot.Foundation.
HRESULT
)(-2003292405);
336
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_NOTINITIALIZED = (winmdroot.Foundation.
HRESULT
)(-2003292404);
338
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_ALREADYLOCKED = (winmdroot.Foundation.
HRESULT
)(-2003292403);
340
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_PROPERTYNOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2003292352);
342
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_PROPERTYNOTSUPPORTED = (winmdroot.Foundation.
HRESULT
)(-2003292351);
344
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_PROPERTYSIZE = (winmdroot.Foundation.
HRESULT
)(-2003292350);
346
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_CODECPRESENT = (winmdroot.Foundation.
HRESULT
)(-2003292349);
348
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_CODECNOTHUMBNAIL = (winmdroot.Foundation.
HRESULT
)(-2003292348);
350
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_PALETTEUNAVAILABLE = (winmdroot.Foundation.
HRESULT
)(-2003292347);
352
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_CODECTOOMANYSCANLINES = (winmdroot.Foundation.
HRESULT
)(-2003292346);
354
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INTERNALERROR = (winmdroot.Foundation.
HRESULT
)(-2003292344);
356
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS = (winmdroot.Foundation.
HRESULT
)(-2003292343);
358
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_COMPONENTNOTFOUND = (winmdroot.Foundation.
HRESULT
)(-2003292336);
360
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_IMAGESIZEOUTOFRANGE = (winmdroot.Foundation.
HRESULT
)(-2003292335);
362
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_TOOMUCHMETADATA = (winmdroot.Foundation.
HRESULT
)(-2003292334);
364
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_BADIMAGE = (winmdroot.Foundation.
HRESULT
)(-2003292320);
366
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_BADHEADER = (winmdroot.Foundation.
HRESULT
)(-2003292319);
368
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_FRAMEMISSING = (winmdroot.Foundation.
HRESULT
)(-2003292318);
370
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_BADMETADATAHEADER = (winmdroot.Foundation.
HRESULT
)(-2003292317);
372
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_BADSTREAMDATA = (winmdroot.Foundation.
HRESULT
)(-2003292304);
374
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_STREAMWRITE = (winmdroot.Foundation.
HRESULT
)(-2003292303);
376
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_STREAMREAD = (winmdroot.Foundation.
HRESULT
)(-2003292302);
378
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_STREAMNOTAVAILABLE = (winmdroot.Foundation.
HRESULT
)(-2003292301);
380
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT = (winmdroot.Foundation.
HRESULT
)(-2003292288);
382
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNSUPPORTEDOPERATION = (winmdroot.Foundation.
HRESULT
)(-2003292287);
384
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INVALIDREGISTRATION = (winmdroot.Foundation.
HRESULT
)(-2003292278);
386
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_COMPONENTINITIALIZEFAILURE = (winmdroot.Foundation.
HRESULT
)(-2003292277);
388
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INSUFFICIENTBUFFER = (winmdroot.Foundation.
HRESULT
)(-2003292276);
390
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_DUPLICATEMETADATAPRESENT = (winmdroot.Foundation.
HRESULT
)(-2003292275);
392
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE = (winmdroot.Foundation.
HRESULT
)(-2003292274);
394
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNEXPECTEDSIZE = (winmdroot.Foundation.
HRESULT
)(-2003292273);
396
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INVALIDQUERYREQUEST = (winmdroot.Foundation.
HRESULT
)(-2003292272);
398
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_UNEXPECTEDMETADATATYPE = (winmdroot.Foundation.
HRESULT
)(-2003292271);
400
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT = (winmdroot.Foundation.
HRESULT
)(-2003292270);
402
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INVALIDQUERYCHARACTER = (winmdroot.Foundation.
HRESULT
)(-2003292269);
404
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_WIN32ERROR = (winmdroot.Foundation.
HRESULT
)(-2003292268);
406
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INVALIDPROGRESSIVELEVEL = (winmdroot.Foundation.
HRESULT
)(-2003292267);
408
internal static readonly winmdroot.Foundation.
HRESULT
WINCODEC_ERR_INVALIDJPEGSCANINDEX = (winmdroot.Foundation.
HRESULT
)(-2003292266);
Windows.Win32.IAdviseSink.g.cs (7)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IAdviseSink*)Unsafe.AsPointer(ref this), riid, ppvObject);
116
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
120
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
137
internal delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
Windows.Win32.IBindCtx.g.cs (51)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IBindCtx*)Unsafe.AsPointer(ref this), riid, ppvObject);
63
public unsafe winmdroot.Foundation.
HRESULT
RegisterObjectBound(winmdroot.System.Com.IUnknown* punk)
65
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IBindCtx*)Unsafe.AsPointer(ref this), punk);
75
public unsafe winmdroot.Foundation.
HRESULT
RevokeObjectBound(winmdroot.System.Com.IUnknown* punk)
77
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IBindCtx*)Unsafe.AsPointer(ref this), punk);
86
public winmdroot.Foundation.
HRESULT
ReleaseBoundObjects()
88
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IBindCtx*)Unsafe.AsPointer(ref this));
92
internal unsafe winmdroot.Foundation.
HRESULT
SetBindOptions(in winmdroot.System.Com.BIND_OPTS pbindopts)
96
winmdroot.Foundation.
HRESULT
__result = this.SetBindOptions(pbindoptsLocal);
110
public unsafe winmdroot.Foundation.
HRESULT
SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts)
112
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts);
116
internal unsafe winmdroot.Foundation.
HRESULT
GetBindOptions(ref winmdroot.System.Com.BIND_OPTS pbindopts)
120
winmdroot.Foundation.
HRESULT
__result = this.GetBindOptions(pbindoptsLocal);
132
public unsafe winmdroot.Foundation.
HRESULT
GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts)
134
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts);
144
public unsafe winmdroot.Foundation.
HRESULT
GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot)
146
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IBindCtx*)Unsafe.AsPointer(ref this), pprot);
161
public unsafe winmdroot.Foundation.
HRESULT
RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk)
163
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, punk);
174
public unsafe winmdroot.Foundation.
HRESULT
GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk)
176
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, ppunk);
186
public unsafe winmdroot.Foundation.
HRESULT
EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum)
188
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IBindCtx*)Unsafe.AsPointer(ref this), ppenum);
201
public winmdroot.Foundation.
HRESULT
RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey)
203
return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey);
206
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
210
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
227
internal delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
233
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
> RegisterObjectBound_4;
235
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
> RevokeObjectBound_5;
237
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.
HRESULT
> ReleaseBoundObjects_6;
239
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.
HRESULT
> SetBindOptions_7;
241
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.
HRESULT
> GetBindOptions_8;
243
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.
HRESULT
> GetRunningObjectTable_9;
245
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.
HRESULT
> RegisterObjectParam_10;
247
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
> GetObjectParam_11;
249
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.
HRESULT
> EnumObjectParam_12;
251
internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.
HRESULT
> RevokeObjectParam_13;
263
unsafe winmdroot.Foundation.
HRESULT
RegisterObjectBound(winmdroot.System.Com.IUnknown* punk);
266
unsafe winmdroot.Foundation.
HRESULT
RevokeObjectBound(winmdroot.System.Com.IUnknown* punk);
269
winmdroot.Foundation.
HRESULT
ReleaseBoundObjects();
272
unsafe winmdroot.Foundation.
HRESULT
SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts);
275
unsafe winmdroot.Foundation.
HRESULT
GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts);
278
unsafe winmdroot.Foundation.
HRESULT
GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot);
281
unsafe winmdroot.Foundation.
HRESULT
RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk);
284
unsafe winmdroot.Foundation.
HRESULT
GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk);
287
unsafe winmdroot.Foundation.
HRESULT
EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum);
290
winmdroot.Foundation.
HRESULT
RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey);
Windows.Win32.IDataObject.g.cs (55)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDataObject*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
GetData(in winmdroot.System.Com.FORMATETC pformatetcIn, out winmdroot.System.Com.STGMEDIUM pmedium)
62
winmdroot.Foundation.
HRESULT
__result = this.GetData(pformatetcInLocal, pmediumLocal);
79
public unsafe winmdroot.Foundation.
HRESULT
GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium)
81
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDataObject*)Unsafe.AsPointer(ref this), pformatetcIn, pmedium);
85
internal unsafe winmdroot.Foundation.
HRESULT
GetDataHere(in winmdroot.System.Com.FORMATETC pformatetc, ref winmdroot.System.Com.STGMEDIUM pmedium)
91
winmdroot.Foundation.
HRESULT
__result = this.GetDataHere(pformatetcLocal, pmediumLocal);
108
public unsafe winmdroot.Foundation.
HRESULT
GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium)
110
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, pmedium);
114
internal unsafe winmdroot.Foundation.
HRESULT
QueryGetData(in winmdroot.System.Com.FORMATETC pformatetc)
118
winmdroot.Foundation.
HRESULT
__result = this.QueryGetData(pformatetcLocal);
130
public unsafe winmdroot.Foundation.
HRESULT
QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc)
132
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc);
136
internal unsafe winmdroot.Foundation.
HRESULT
GetCanonicalFormatEtc(in winmdroot.System.Com.FORMATETC pformatectIn, out winmdroot.System.Com.FORMATETC pformatetcOut)
142
winmdroot.Foundation.
HRESULT
__result = this.GetCanonicalFormatEtc(pformatectInLocal, pformatetcOutLocal);
159
public unsafe winmdroot.Foundation.
HRESULT
GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut)
161
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDataObject*)Unsafe.AsPointer(ref this), pformatectIn, pformatetcOut);
165
internal unsafe winmdroot.Foundation.
HRESULT
SetData(in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pmedium, winmdroot.Foundation.BOOL fRelease)
171
winmdroot.Foundation.
HRESULT
__result = this.SetData(pformatetcLocal, pmediumLocal, fRelease);
189
public unsafe winmdroot.Foundation.
HRESULT
SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease)
191
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, pmedium, fRelease);
209
public unsafe winmdroot.Foundation.
HRESULT
EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc)
211
return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IDataObject*)Unsafe.AsPointer(ref this), dwDirection, ppenumFormatEtc);
215
internal unsafe winmdroot.Foundation.
HRESULT
DAdvise(in winmdroot.System.Com.FORMATETC pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection)
221
winmdroot.Foundation.
HRESULT
__result = this.DAdvise(pformatetcLocal, advf, pAdvSink, pdwConnectionLocal);
246
public unsafe winmdroot.Foundation.
HRESULT
DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection)
248
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,uint ,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, advf, pAdvSink, pdwConnection);
261
public winmdroot.Foundation.
HRESULT
DUnadvise(uint dwConnection)
263
return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IDataObject*)Unsafe.AsPointer(ref this), dwConnection);
276
public unsafe winmdroot.Foundation.
HRESULT
EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise)
278
return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IDataObject*)Unsafe.AsPointer(ref this), ppenumAdvise);
281
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
285
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
302
internal delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
308
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.
HRESULT
> GetData_4;
310
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.
HRESULT
> GetDataHere_5;
312
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.
HRESULT
> QueryGetData_6;
314
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.
HRESULT
> GetCanonicalFormatEtc_7;
316
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> SetData_8;
318
internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.
HRESULT
> EnumFormatEtc_9;
320
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,uint ,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.
HRESULT
> DAdvise_10;
322
internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.
HRESULT
> DUnadvise_11;
324
internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.
HRESULT
> EnumDAdvise_12;
336
unsafe winmdroot.Foundation.
HRESULT
GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium);
339
unsafe winmdroot.Foundation.
HRESULT
GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium);
342
unsafe winmdroot.Foundation.
HRESULT
QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc);
345
unsafe winmdroot.Foundation.
HRESULT
GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut);
348
unsafe winmdroot.Foundation.
HRESULT
SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease);
351
unsafe winmdroot.Foundation.
HRESULT
EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc);
354
unsafe winmdroot.Foundation.
HRESULT
DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection);
357
winmdroot.Foundation.
HRESULT
DUnadvise(uint dwConnection);
360
unsafe winmdroot.Foundation.
HRESULT
EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise);
Windows.Win32.IDataObjectAsyncCapability.g.cs (35)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), riid, ppvObject);
67
public winmdroot.Foundation.
HRESULT
SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync)
69
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), fDoOpAsync);
73
internal unsafe winmdroot.Foundation.
HRESULT
GetAsyncMode(out winmdroot.Foundation.BOOL pfIsOpAsync)
77
winmdroot.Foundation.
HRESULT
__result = this.GetAsyncMode(pfIsOpAsyncLocal);
91
public unsafe winmdroot.Foundation.
HRESULT
GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync)
93
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfIsOpAsync);
105
public unsafe winmdroot.Foundation.
HRESULT
StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved)
107
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pbcReserved);
111
internal unsafe winmdroot.Foundation.
HRESULT
InOperation(out winmdroot.Foundation.BOOL pfInAsyncOp)
115
winmdroot.Foundation.
HRESULT
__result = this.InOperation(pfInAsyncOpLocal);
129
public unsafe winmdroot.Foundation.
HRESULT
InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp)
131
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfInAsyncOp);
154
public unsafe winmdroot.Foundation.
HRESULT
EndOperation(winmdroot.Foundation.
HRESULT
hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects)
156
return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.
HRESULT
,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), hResult, pbcReserved, dwEffects);
159
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
163
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
180
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
186
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> SetAsyncMode_4;
188
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
> GetAsyncMode_5;
190
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.
HRESULT
> StartOperation_6;
192
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
> InOperation_7;
194
internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.
HRESULT
,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.Foundation.
HRESULT
> EndOperation_8;
206
winmdroot.Foundation.
HRESULT
SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync);
209
unsafe winmdroot.Foundation.
HRESULT
GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync);
212
unsafe winmdroot.Foundation.
HRESULT
StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved);
215
unsafe winmdroot.Foundation.
HRESULT
InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp);
218
unsafe winmdroot.Foundation.
HRESULT
EndOperation(winmdroot.Foundation.
HRESULT
hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects);
Windows.Win32.IDispatch.g.cs (25)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDispatch*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(out uint pctinfo)
59
winmdroot.Foundation.
HRESULT
__result = this.GetTypeInfoCount(pctinfoLocal);
71
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(uint* pctinfo)
73
return ((delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDispatch*)Unsafe.AsPointer(ref this), pctinfo);
87
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo)
89
return ((delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDispatch*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo);
93
internal unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId)
102
winmdroot.Foundation.
HRESULT
__result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal);
123
public unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId)
125
return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDispatch*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId);
129
internal unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr)
135
winmdroot.Foundation.
HRESULT
__result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr);
167
public unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr)
169
return ((delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDispatch*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
172
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
176
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
193
internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
199
internal delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.
HRESULT
> GetTypeInfoCount_4;
201
internal delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfo_5;
203
internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
> GetIDsOfNames_6;
205
internal delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
> Invoke_7;
Windows.Win32.IDispatchEx.g.cs (65)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDispatchEx*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(out uint pctinfo)
59
winmdroot.Foundation.
HRESULT
__result = this.GetTypeInfoCount(pctinfoLocal);
64
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(uint* pctinfo)
66
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDispatchEx*)Unsafe.AsPointer(ref this), pctinfo);
69
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo)
71
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDispatchEx*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo);
75
internal unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId)
84
winmdroot.Foundation.
HRESULT
__result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal);
91
public unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId)
93
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDispatchEx*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId);
97
internal unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr)
103
winmdroot.Foundation.
HRESULT
__result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr);
109
public unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr)
111
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDispatchEx*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
115
internal unsafe winmdroot.Foundation.
HRESULT
GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid)
119
winmdroot.Foundation.
HRESULT
__result = this.GetDispID(bstrName, grfdex, pidLocal);
124
public unsafe winmdroot.Foundation.
HRESULT
GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid)
126
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex, pid);
130
internal unsafe winmdroot.Foundation.
HRESULT
InvokeEx(int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, winmdroot.System.Variant.VARIANT* pvarRes, winmdroot.System.Com.EXCEPINFO* pei, winmdroot.System.Com.IServiceProvider* pspCaller)
134
winmdroot.Foundation.
HRESULT
__result = this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarRes, pei, pspCaller);
139
public unsafe winmdroot.Foundation.
HRESULT
InvokeEx(int id, uint lcid, ushort wFlags, winmdroot.System.Com.DISPPARAMS* pdp, [Optional] winmdroot.System.Variant.VARIANT* pvarRes, [Optional] winmdroot.System.Com.EXCEPINFO* pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller)
141
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,ushort ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.System.Com.IServiceProvider* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IDispatchEx*)Unsafe.AsPointer(ref this), id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
144
public winmdroot.Foundation.
HRESULT
DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex)
146
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex);
149
public winmdroot.Foundation.
HRESULT
DeleteMemberByDispID(int id)
151
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IDispatchEx*)Unsafe.AsPointer(ref this), id);
155
internal unsafe winmdroot.Foundation.
HRESULT
GetMemberProperties(int id, uint grfdexFetch, out winmdroot.System.Ole.FDEX_PROP_FLAGS pgrfdex)
159
winmdroot.Foundation.
HRESULT
__result = this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal);
164
public unsafe winmdroot.Foundation.
HRESULT
GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex)
166
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,winmdroot.System.Ole.FDEX_PROP_FLAGS* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IDispatchEx*)Unsafe.AsPointer(ref this), id, grfdexFetch, pgrfdex);
169
public unsafe winmdroot.Foundation.
HRESULT
GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName)
171
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IDispatchEx*)Unsafe.AsPointer(ref this), id, pbstrName);
175
internal unsafe winmdroot.Foundation.
HRESULT
GetNextDispID(uint grfdex, int id, out int pid)
179
winmdroot.Foundation.
HRESULT
__result = this.GetNextDispID(grfdex, id, pidLocal);
184
public unsafe winmdroot.Foundation.
HRESULT
GetNextDispID(uint grfdex, int id, int* pid)
186
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IDispatchEx*)Unsafe.AsPointer(ref this), grfdex, id, pid);
189
public unsafe winmdroot.Foundation.
HRESULT
GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk)
191
return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((IDispatchEx*)Unsafe.AsPointer(ref this), ppunk);
194
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
198
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
215
internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
221
internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.
HRESULT
> GetTypeInfoCount_4;
223
internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfo_5;
225
internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
> GetIDsOfNames_6;
227
internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
> Invoke_7;
229
internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.
HRESULT
> GetDispID_8;
231
internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,ushort ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.System.Com.IServiceProvider* ,winmdroot.Foundation.
HRESULT
> InvokeEx_9;
233
internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.
HRESULT
> DeleteMemberByName_10;
235
internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.
HRESULT
> DeleteMemberByDispID_11;
237
internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,winmdroot.System.Ole.FDEX_PROP_FLAGS* ,winmdroot.Foundation.
HRESULT
> GetMemberProperties_12;
239
internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetMemberName_13;
241
internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.
HRESULT
> GetNextDispID_14;
243
internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
> GetNameSpaceParent_15;
254
unsafe winmdroot.Foundation.
HRESULT
GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid);
257
unsafe winmdroot.Foundation.
HRESULT
InvokeEx(int id, uint lcid, ushort wFlags, winmdroot.System.Com.DISPPARAMS* pdp, [Optional] winmdroot.System.Variant.VARIANT* pvarRes, [Optional] winmdroot.System.Com.EXCEPINFO* pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller);
260
winmdroot.Foundation.
HRESULT
DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex);
263
winmdroot.Foundation.
HRESULT
DeleteMemberByDispID(int id);
266
unsafe winmdroot.Foundation.
HRESULT
GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex);
269
unsafe winmdroot.Foundation.
HRESULT
GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName);
272
unsafe winmdroot.Foundation.
HRESULT
GetNextDispID(uint grfdex, int id, int* pid);
275
unsafe winmdroot.Foundation.
HRESULT
GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk);
Windows.Win32.IDragSourceHelper.g.cs (19)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDragSourceHelper*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject)
60
winmdroot.Foundation.
HRESULT
__result = this.InitializeFromBitmap(pshdiLocal, pDataObject);
78
public unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject)
80
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDragSourceHelper*)Unsafe.AsPointer(ref this), pshdi, pDataObject);
84
internal unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject)
87
winmdroot.Foundation.
HRESULT
__result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
108
public unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject)
110
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDragSourceHelper*)Unsafe.AsPointer(ref this), hwnd, ppt, pDataObject);
113
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
117
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
134
internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
140
internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
> InitializeFromBitmap_4;
142
internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
> InitializeFromWindow_5;
154
unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject);
157
unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject);
Windows.Win32.IDragSourceHelper2.g.cs (23)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject)
60
winmdroot.Foundation.
HRESULT
__result = this.InitializeFromBitmap(pshdiLocal, pDataObject);
65
public unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject)
67
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), pshdi, pDataObject);
71
internal unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject)
74
winmdroot.Foundation.
HRESULT
__result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
78
public unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject)
80
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), hwnd, ppt, pDataObject);
94
public winmdroot.Foundation.
HRESULT
SetFlags(uint dwFlags)
96
return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), dwFlags);
99
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
103
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
120
internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
126
internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
> InitializeFromBitmap_4;
128
internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.
HRESULT
> InitializeFromWindow_5;
130
internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.
HRESULT
> SetFlags_6;
142
unsafe new winmdroot.Foundation.
HRESULT
InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject);
145
unsafe new winmdroot.Foundation.
HRESULT
InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject);
148
winmdroot.Foundation.
HRESULT
SetFlags(uint dwFlags);
Windows.Win32.IDropSource.g.cs (15)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDropSource*)Unsafe.AsPointer(ref this), riid, ppvObject);
63
public winmdroot.Foundation.
HRESULT
QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState)
65
return ((delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDropSource*)Unsafe.AsPointer(ref this), fEscapePressed, grfKeyState);
79
public winmdroot.Foundation.
HRESULT
GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect)
81
return ((delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDropSource*)Unsafe.AsPointer(ref this), dwEffect);
84
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
88
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
105
internal delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
111
internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.
HRESULT
> QueryContinueDrag_4;
113
internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
> GiveFeedback_5;
125
winmdroot.Foundation.
HRESULT
QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState);
128
winmdroot.Foundation.
HRESULT
GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect);
Windows.Win32.IDropSourceNotify.g.cs (15)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDropSourceNotify*)Unsafe.AsPointer(ref this), riid, ppvObject);
61
public winmdroot.Foundation.
HRESULT
DragEnterTarget(winmdroot.Foundation.HWND hwndTarget)
63
return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDropSourceNotify*)Unsafe.AsPointer(ref this), hwndTarget);
71
public winmdroot.Foundation.
HRESULT
DragLeaveTarget()
73
return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDropSourceNotify*)Unsafe.AsPointer(ref this));
76
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
80
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
97
internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
103
internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.
HRESULT
> DragEnterTarget_4;
105
internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.
HRESULT
> DragLeaveTarget_5;
117
winmdroot.Foundation.
HRESULT
DragEnterTarget(winmdroot.Foundation.HWND hwndTarget);
120
winmdroot.Foundation.
HRESULT
DragLeaveTarget();
Windows.Win32.IDropTarget.g.cs (29)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDropTarget*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
60
winmdroot.Foundation.
HRESULT
__result = this.DragEnter(pDataObj, grfKeyState, pt, pdwEffectLocal);
79
public unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect)
81
return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDropTarget*)Unsafe.AsPointer(ref this), pDataObj, grfKeyState, pt, pdwEffect);
85
internal unsafe winmdroot.Foundation.
HRESULT
DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
89
winmdroot.Foundation.
HRESULT
__result = this.DragOver(grfKeyState, pt, pdwEffectLocal);
107
public unsafe winmdroot.Foundation.
HRESULT
DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect)
109
return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDropTarget*)Unsafe.AsPointer(ref this), grfKeyState, pt, pdwEffect);
122
public winmdroot.Foundation.
HRESULT
DragLeave()
124
return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDropTarget*)Unsafe.AsPointer(ref this));
128
internal unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
132
winmdroot.Foundation.
HRESULT
__result = this.Drop(pDataObj, grfKeyState, pt, pdwEffectLocal);
151
public unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect)
153
return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDropTarget*)Unsafe.AsPointer(ref this), pDataObj, grfKeyState, pt, pdwEffect);
156
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
160
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
177
internal delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
183
internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
> DragEnter_4;
185
internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
> DragOver_5;
187
internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.
HRESULT
> DragLeave_6;
189
internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.
HRESULT
> Drop_7;
201
unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect);
204
unsafe winmdroot.Foundation.
HRESULT
DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect);
207
winmdroot.Foundation.
HRESULT
DragLeave();
210
unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect);
Windows.Win32.IDropTargetHelper.g.cs (33)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IDropTargetHelper*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
60
winmdroot.Foundation.
HRESULT
__result = this.DragEnter(hwndTarget, pDataObject, pptLocal, dwEffect);
86
public unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
88
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IDropTargetHelper*)Unsafe.AsPointer(ref this), hwndTarget, pDataObject, ppt, dwEffect);
96
public winmdroot.Foundation.
HRESULT
DragLeave()
98
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IDropTargetHelper*)Unsafe.AsPointer(ref this));
102
internal unsafe winmdroot.Foundation.
HRESULT
DragOver(in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
106
winmdroot.Foundation.
HRESULT
__result = this.DragOver(pptLocal, dwEffect);
124
public unsafe winmdroot.Foundation.
HRESULT
DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
126
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IDropTargetHelper*)Unsafe.AsPointer(ref this), ppt, dwEffect);
130
internal unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
134
winmdroot.Foundation.
HRESULT
__result = this.Drop(pDataObject, pptLocal, dwEffect);
156
public unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
158
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IDropTargetHelper*)Unsafe.AsPointer(ref this), pDataObject, ppt, dwEffect);
170
public winmdroot.Foundation.
HRESULT
Show(winmdroot.Foundation.BOOL fShow)
172
return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IDropTargetHelper*)Unsafe.AsPointer(ref this), fShow);
175
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
179
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
196
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
202
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
> DragEnter_4;
204
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.
HRESULT
> DragLeave_5;
206
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
> DragOver_6;
208
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.
HRESULT
> Drop_7;
210
internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> Show_8;
222
unsafe winmdroot.Foundation.
HRESULT
DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect);
225
winmdroot.Foundation.
HRESULT
DragLeave();
228
unsafe winmdroot.Foundation.
HRESULT
DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect);
231
unsafe winmdroot.Foundation.
HRESULT
Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect);
234
winmdroot.Foundation.
HRESULT
Show(winmdroot.Foundation.BOOL fShow);
Windows.Win32.IEnumFORMATETC.g.cs (25)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
Next(Span<winmdroot.System.Com.FORMATETC> rgelt, uint* pceltFetched)
60
winmdroot.Foundation.
HRESULT
__result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
76
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched)
78
return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
87
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
89
return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt);
95
public winmdroot.Foundation.
HRESULT
Reset()
97
return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumFORMATETC*)Unsafe.AsPointer(ref this));
109
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum)
111
return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), ppenum);
114
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
118
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
135
internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
141
internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
143
internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
145
internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.
HRESULT
> Reset_6;
147
internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.
HRESULT
> Clone_7;
159
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched);
162
winmdroot.Foundation.
HRESULT
Skip(uint celt);
165
winmdroot.Foundation.
HRESULT
Reset();
168
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum);
Windows.Win32.IEnumMoniker.g.cs (23)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject);
66
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched)
68
return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
77
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
79
return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt);
85
public winmdroot.Foundation.
HRESULT
Reset()
87
return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumMoniker*)Unsafe.AsPointer(ref this));
99
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumMoniker** ppenum)
101
return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumMoniker*)Unsafe.AsPointer(ref this), ppenum);
104
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
108
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
125
internal delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
131
internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
133
internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
135
internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.
HRESULT
> Reset_6;
137
internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
> Clone_7;
149
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched);
152
winmdroot.Foundation.
HRESULT
Skip(uint celt);
155
winmdroot.Foundation.
HRESULT
Reset();
158
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumMoniker** ppenum);
Windows.Win32.IEnumSTATDATA.g.cs (25)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
Next(Span<winmdroot.System.Com.STATDATA> rgelt, uint* pceltFetched)
60
winmdroot.Foundation.
HRESULT
__result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
76
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched)
78
return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
87
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
89
return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt);
95
public winmdroot.Foundation.
HRESULT
Reset()
97
return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumSTATDATA*)Unsafe.AsPointer(ref this));
109
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum)
111
return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), ppenum);
114
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
118
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
135
internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
141
internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
143
internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
145
internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.
HRESULT
> Reset_6;
147
internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.
HRESULT
> Clone_7;
159
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched);
162
winmdroot.Foundation.
HRESULT
Skip(uint celt);
165
winmdroot.Foundation.
HRESULT
Reset();
168
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum);
Windows.Win32.IEnumSTATSTG.g.cs (25)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
Next(Span<winmdroot.System.Com.STATSTG> rgelt, uint* pceltFetched)
60
winmdroot.Foundation.
HRESULT
__result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
76
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched)
78
return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
89
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
91
return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt);
102
public winmdroot.Foundation.
HRESULT
Reset()
104
return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumSTATSTG*)Unsafe.AsPointer(ref this));
119
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum)
121
return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), ppenum);
124
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
128
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
145
internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
151
internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
153
internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
155
internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.
HRESULT
> Reset_6;
157
internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.
HRESULT
> Clone_7;
169
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched);
172
winmdroot.Foundation.
HRESULT
Skip(uint celt);
175
winmdroot.Foundation.
HRESULT
Reset();
178
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum);
Windows.Win32.IEnumString.g.cs (25)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumString*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
Next(Span<winmdroot.Foundation.PWSTR> rgelt, uint* pceltFetched)
60
winmdroot.Foundation.
HRESULT
__result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
76
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched)
78
return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumString*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
87
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
89
return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumString*)Unsafe.AsPointer(ref this), celt);
95
public winmdroot.Foundation.
HRESULT
Reset()
97
return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumString*)Unsafe.AsPointer(ref this));
106
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumString** ppenum)
108
return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumString*)Unsafe.AsPointer(ref this), ppenum);
111
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
115
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
132
internal delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
138
internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
140
internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
142
internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.
HRESULT
> Reset_6;
144
internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.
HRESULT
> Clone_7;
156
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched);
159
winmdroot.Foundation.
HRESULT
Skip(uint celt);
162
winmdroot.Foundation.
HRESULT
Reset();
165
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumString** ppenum);
Windows.Win32.IEnumUnknown.g.cs (23)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IEnumUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject);
66
public unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched)
68
return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
77
public winmdroot.Foundation.
HRESULT
Skip(uint celt)
79
return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt);
85
public winmdroot.Foundation.
HRESULT
Reset()
87
return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IEnumUnknown*)Unsafe.AsPointer(ref this));
96
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumUnknown** ppenum)
98
return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IEnumUnknown*)Unsafe.AsPointer(ref this), ppenum);
101
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
105
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
122
internal delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
128
internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.
HRESULT
> Next_4;
130
internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.
HRESULT
> Skip_5;
132
internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.
HRESULT
> Reset_6;
134
internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.
HRESULT
> Clone_7;
146
unsafe winmdroot.Foundation.
HRESULT
Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched);
149
winmdroot.Foundation.
HRESULT
Skip(uint celt);
152
winmdroot.Foundation.
HRESULT
Reset();
155
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IEnumUnknown** ppenum);
Windows.Win32.IGlobalInterfaceTable.g.cs (23)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, in global::System.Guid riid, out uint pdwCookie)
62
winmdroot.Foundation.
HRESULT
__result = this.RegisterInterfaceInGlobal(pUnk, riidLocal, pdwCookieLocal);
80
public unsafe winmdroot.Foundation.
HRESULT
RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie)
82
return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), pUnk, riid, pdwCookie);
92
public winmdroot.Foundation.
HRESULT
RevokeInterfaceFromGlobal(uint dwCookie)
94
return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie);
98
internal unsafe winmdroot.Foundation.
HRESULT
GetInterfaceFromGlobal(uint dwCookie, in global::System.Guid riid, out void* ppv)
104
winmdroot.Foundation.
HRESULT
__result = this.GetInterfaceFromGlobal(dwCookie, riidLocal, ppvLocal);
122
public unsafe winmdroot.Foundation.
HRESULT
GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv)
124
return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie, riid, ppv);
127
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
131
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
148
internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
154
internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,uint* ,winmdroot.Foundation.
HRESULT
> RegisterInterfaceInGlobal_4;
156
internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.
HRESULT
> RevokeInterfaceFromGlobal_5;
158
internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> GetInterfaceFromGlobal_6;
170
unsafe winmdroot.Foundation.
HRESULT
RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie);
173
winmdroot.Foundation.
HRESULT
RevokeInterfaceFromGlobal(uint dwCookie);
176
unsafe winmdroot.Foundation.
HRESULT
GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv);
Windows.Win32.IMoniker.g.cs (105)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
GetClassID(out global::System.Guid pClassID)
60
winmdroot.Foundation.
HRESULT
__result = this.GetClassID(pClassIDLocal);
65
public unsafe winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID)
67
return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IMoniker*)Unsafe.AsPointer(ref this), pClassID);
70
public winmdroot.Foundation.
HRESULT
IsDirty()
72
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IMoniker*)Unsafe.AsPointer(ref this));
75
public unsafe winmdroot.Foundation.
HRESULT
Load(winmdroot.System.Com.IStream* pStm)
77
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IMoniker*)Unsafe.AsPointer(ref this), pStm);
80
public unsafe winmdroot.Foundation.
HRESULT
Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty)
82
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IMoniker*)Unsafe.AsPointer(ref this), pStm, fClearDirty);
86
internal unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(out ulong pcbSize)
90
winmdroot.Foundation.
HRESULT
__result = this.GetSizeMax(pcbSizeLocal);
95
public unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(ulong* pcbSize)
97
return ((delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IMoniker*)Unsafe.AsPointer(ref this), pcbSize);
101
internal unsafe winmdroot.Foundation.
HRESULT
BindToObject(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riidResult, out void* ppvResult)
107
winmdroot.Foundation.
HRESULT
__result = this.BindToObject(pbc, pmkToLeft, riidResultLocal, ppvResultLocal);
127
public unsafe winmdroot.Foundation.
HRESULT
BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult)
129
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, riidResult, ppvResult);
133
internal unsafe winmdroot.Foundation.
HRESULT
BindToStorage(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riid, out void* ppvObj)
139
winmdroot.Foundation.
HRESULT
__result = this.BindToStorage(pbc, pmkToLeft, riidLocal, ppvObjLocal);
159
public unsafe winmdroot.Foundation.
HRESULT
BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj)
161
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, riid, ppvObj);
181
public unsafe winmdroot.Foundation.
HRESULT
Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced)
183
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IMoniker*)Unsafe.AsPointer(ref this), pbc, dwReduceHowFar, ppmkToLeft, ppmkReduced);
199
public unsafe winmdroot.Foundation.
HRESULT
ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite)
201
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IMoniker*)Unsafe.AsPointer(ref this), pmkRight, fOnlyIfNotGeneric, ppmkComposite);
213
public unsafe winmdroot.Foundation.
HRESULT
Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker)
215
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IMoniker*)Unsafe.AsPointer(ref this), fForward, ppenumMoniker);
226
public unsafe winmdroot.Foundation.
HRESULT
IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker)
228
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IMoniker*)Unsafe.AsPointer(ref this), pmkOtherMoniker);
232
internal unsafe winmdroot.Foundation.
HRESULT
Hash(out uint pdwHash)
236
winmdroot.Foundation.
HRESULT
__result = this.Hash(pdwHashLocal);
249
public unsafe winmdroot.Foundation.
HRESULT
Hash(uint* pdwHash)
251
return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((IMoniker*)Unsafe.AsPointer(ref this), pdwHash);
267
public unsafe winmdroot.Foundation.
HRESULT
IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning)
269
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[15])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pmkNewlyRunning);
273
internal unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out global::System.Runtime.InteropServices.ComTypes.FILETIME pFileTime)
277
winmdroot.Foundation.
HRESULT
__result = this.GetTimeOfLastChange(pbc, pmkToLeft, pFileTimeLocal);
297
public unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime)
299
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[16])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pFileTime);
314
public unsafe winmdroot.Foundation.
HRESULT
Inverse(winmdroot.System.Com.IMoniker** ppmk)
316
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[17])((IMoniker*)Unsafe.AsPointer(ref this), ppmk);
334
public unsafe winmdroot.Foundation.
HRESULT
CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix)
336
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[18])((IMoniker*)Unsafe.AsPointer(ref this), pmkOther, ppmkPrefix);
351
public unsafe winmdroot.Foundation.
HRESULT
RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath)
353
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[19])((IMoniker*)Unsafe.AsPointer(ref this), pmkOther, ppmkRelPath);
357
internal unsafe winmdroot.Foundation.
HRESULT
GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out winmdroot.Foundation.PWSTR ppszDisplayName)
361
winmdroot.Foundation.
HRESULT
__result = this.GetDisplayName(pbc, pmkToLeft, ppszDisplayNameLocal);
379
public unsafe winmdroot.Foundation.
HRESULT
GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName)
381
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[20])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, ppszDisplayName);
385
internal unsafe winmdroot.Foundation.
HRESULT
ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut)
389
winmdroot.Foundation.
HRESULT
__result = this.ParseDisplayName(pbc, pmkToLeft, pszDisplayName, pchEatenLocal, ppmkOut);
409
public unsafe winmdroot.Foundation.
HRESULT
ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut)
411
return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[21])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pszDisplayName, pchEaten, ppmkOut);
415
internal unsafe winmdroot.Foundation.
HRESULT
IsSystemMoniker(out uint pdwMksys)
419
winmdroot.Foundation.
HRESULT
__result = this.IsSystemMoniker(pdwMksysLocal);
432
public unsafe winmdroot.Foundation.
HRESULT
IsSystemMoniker(uint* pdwMksys)
434
return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[22])((IMoniker*)Unsafe.AsPointer(ref this), pdwMksys);
437
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
441
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
458
internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
464
internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
> GetClassID_4;
466
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.
HRESULT
> IsDirty_5;
468
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.
HRESULT
> Load_6;
470
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> Save_7;
472
internal delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.
HRESULT
> GetSizeMax_8;
474
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> BindToObject_9;
476
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> BindToStorage_10;
478
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> Reduce_11;
480
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> ComposeWith_12;
482
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
> Enum_13;
484
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
> IsEqual_14;
486
internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.
HRESULT
> Hash_15;
488
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
> IsRunning_16;
490
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
> GetTimeOfLastChange_17;
492
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> Inverse_18;
494
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> CommonPrefixWith_19;
496
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> RelativePathTo_20;
498
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.
HRESULT
> GetDisplayName_21;
500
internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.
HRESULT
> ParseDisplayName_22;
502
internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.
HRESULT
> IsSystemMoniker_23;
514
unsafe new winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID);
517
new winmdroot.Foundation.
HRESULT
IsDirty();
520
unsafe new winmdroot.Foundation.
HRESULT
Load(winmdroot.System.Com.IStream* pStm);
523
unsafe new winmdroot.Foundation.
HRESULT
Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty);
526
unsafe new winmdroot.Foundation.
HRESULT
GetSizeMax(ulong* pcbSize);
529
unsafe winmdroot.Foundation.
HRESULT
BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult);
532
unsafe winmdroot.Foundation.
HRESULT
BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj);
535
unsafe winmdroot.Foundation.
HRESULT
Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced);
538
unsafe winmdroot.Foundation.
HRESULT
ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite);
541
unsafe winmdroot.Foundation.
HRESULT
Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker);
544
unsafe winmdroot.Foundation.
HRESULT
IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker);
547
unsafe winmdroot.Foundation.
HRESULT
Hash(uint* pdwHash);
550
unsafe winmdroot.Foundation.
HRESULT
IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning);
553
unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime);
556
unsafe winmdroot.Foundation.
HRESULT
Inverse(winmdroot.System.Com.IMoniker** ppmk);
559
unsafe winmdroot.Foundation.
HRESULT
CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix);
562
unsafe winmdroot.Foundation.
HRESULT
RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath);
565
unsafe winmdroot.Foundation.
HRESULT
GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName);
568
unsafe winmdroot.Foundation.
HRESULT
ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut);
571
unsafe winmdroot.Foundation.
HRESULT
IsSystemMoniker(uint* pdwMksys);
Windows.Win32.IPersist.g.cs (13)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IPersist*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
GetClassID(out global::System.Guid pClassID)
60
winmdroot.Foundation.
HRESULT
__result = this.GetClassID(pClassIDLocal);
73
public unsafe winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID)
75
return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IPersist*)Unsafe.AsPointer(ref this), pClassID);
78
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
82
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
99
internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
105
internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
> GetClassID_4;
117
unsafe winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID);
Windows.Win32.IPersistStream.g.cs (31)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IPersistStream*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
GetClassID(out global::System.Guid pClassID)
60
winmdroot.Foundation.
HRESULT
__result = this.GetClassID(pClassIDLocal);
65
public unsafe winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID)
67
return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IPersistStream*)Unsafe.AsPointer(ref this), pClassID);
76
public winmdroot.Foundation.
HRESULT
IsDirty()
78
return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IPersistStream*)Unsafe.AsPointer(ref this));
92
public unsafe winmdroot.Foundation.
HRESULT
Load(winmdroot.System.Com.IStream* pStm)
94
return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IPersistStream*)Unsafe.AsPointer(ref this), pStm);
109
public unsafe winmdroot.Foundation.
HRESULT
Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty)
111
return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IPersistStream*)Unsafe.AsPointer(ref this), pStm, fClearDirty);
115
internal unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(out ulong pcbSize)
119
winmdroot.Foundation.
HRESULT
__result = this.GetSizeMax(pcbSizeLocal);
131
public unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(ulong* pcbSize)
133
return ((delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IPersistStream*)Unsafe.AsPointer(ref this), pcbSize);
136
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
140
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
157
internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
163
internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
> GetClassID_4;
165
internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.
HRESULT
> IsDirty_5;
167
internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.
HRESULT
> Load_6;
169
internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> Save_7;
171
internal delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.
HRESULT
> GetSizeMax_8;
183
unsafe new winmdroot.Foundation.
HRESULT
GetClassID(global::System.Guid* pClassID);
186
winmdroot.Foundation.
HRESULT
IsDirty();
189
unsafe winmdroot.Foundation.
HRESULT
Load(winmdroot.System.Com.IStream* pStm);
192
unsafe winmdroot.Foundation.
HRESULT
Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty);
195
unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(ulong* pcbSize);
Windows.Win32.IPicture.g.cs (85)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IPicture*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
get_Handle(out winmdroot.System.Ole.OLE_HANDLE pHandle)
60
winmdroot.Foundation.
HRESULT
__result = this.get_Handle(pHandleLocal);
75
public unsafe winmdroot.Foundation.
HRESULT
get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle)
77
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IPicture*)Unsafe.AsPointer(ref this), pHandle);
81
internal unsafe winmdroot.Foundation.
HRESULT
get_hPal(out winmdroot.System.Ole.OLE_HANDLE phPal)
85
winmdroot.Foundation.
HRESULT
__result = this.get_hPal(phPalLocal);
100
public unsafe winmdroot.Foundation.
HRESULT
get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal)
102
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IPicture*)Unsafe.AsPointer(ref this), phPal);
106
internal unsafe winmdroot.Foundation.
HRESULT
get_Type(out winmdroot.System.Ole.PICTYPE pType)
110
winmdroot.Foundation.
HRESULT
__result = this.get_Type(pTypeLocal);
124
public unsafe winmdroot.Foundation.
HRESULT
get_Type(winmdroot.System.Ole.PICTYPE* pType)
126
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IPicture*)Unsafe.AsPointer(ref this), pType);
130
internal unsafe winmdroot.Foundation.
HRESULT
get_Width(out int pWidth)
134
winmdroot.Foundation.
HRESULT
__result = this.get_Width(pWidthLocal);
148
public unsafe winmdroot.Foundation.
HRESULT
get_Width(int* pWidth)
150
return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IPicture*)Unsafe.AsPointer(ref this), pWidth);
154
internal unsafe winmdroot.Foundation.
HRESULT
get_Height(out int pHeight)
158
winmdroot.Foundation.
HRESULT
__result = this.get_Height(pHeightLocal);
172
public unsafe winmdroot.Foundation.
HRESULT
get_Height(int* pHeight)
174
return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IPicture*)Unsafe.AsPointer(ref this), pHeight);
178
internal unsafe winmdroot.Foundation.
HRESULT
Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, in winmdroot.Foundation.RECT pRcWBounds)
182
winmdroot.Foundation.
HRESULT
__result = this.Render(hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBoundsLocal);
205
public unsafe winmdroot.Foundation.
HRESULT
Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, winmdroot.Foundation.RECT* pRcWBounds)
207
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,int ,int ,int ,int ,int ,int ,int ,int ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IPicture*)Unsafe.AsPointer(ref this), hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBounds);
217
public winmdroot.Foundation.
HRESULT
set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal)
219
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IPicture*)Unsafe.AsPointer(ref this), hPal);
223
internal unsafe winmdroot.Foundation.
HRESULT
get_CurDC(out winmdroot.Graphics.Gdi.HDC phDC)
227
winmdroot.Foundation.
HRESULT
__result = this.get_CurDC(phDCLocal);
242
public unsafe winmdroot.Foundation.
HRESULT
get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC)
244
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IPicture*)Unsafe.AsPointer(ref this), phDC);
248
internal unsafe winmdroot.Foundation.
HRESULT
SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, out winmdroot.Graphics.Gdi.HDC phDCOut, out winmdroot.System.Ole.OLE_HANDLE phBmpOut)
254
winmdroot.Foundation.
HRESULT
__result = this.SelectPicture(hDCIn, phDCOutLocal, phBmpOutLocal);
268
public unsafe winmdroot.Foundation.
HRESULT
SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut)
270
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC* ,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IPicture*)Unsafe.AsPointer(ref this), hDCIn, phDCOut, phBmpOut);
274
internal unsafe winmdroot.Foundation.
HRESULT
get_KeepOriginalFormat(out winmdroot.Foundation.BOOL pKeep)
278
winmdroot.Foundation.
HRESULT
__result = this.get_KeepOriginalFormat(pKeepLocal);
292
public unsafe winmdroot.Foundation.
HRESULT
get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep)
294
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IPicture*)Unsafe.AsPointer(ref this), pKeep);
303
public winmdroot.Foundation.
HRESULT
put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep)
305
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IPicture*)Unsafe.AsPointer(ref this), keep);
313
public winmdroot.Foundation.
HRESULT
PictureChanged()
315
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((IPicture*)Unsafe.AsPointer(ref this));
319
internal unsafe winmdroot.Foundation.
HRESULT
SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, out int pCbSize)
323
winmdroot.Foundation.
HRESULT
__result = this.SaveAsFile(pStream, fSaveMemCopy, pCbSizeLocal);
336
public unsafe winmdroot.Foundation.
HRESULT
SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize)
338
return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[15])((IPicture*)Unsafe.AsPointer(ref this), pStream, fSaveMemCopy, pCbSize);
342
internal unsafe winmdroot.Foundation.
HRESULT
get_Attributes(out uint pDwAttr)
346
winmdroot.Foundation.
HRESULT
__result = this.get_Attributes(pDwAttrLocal);
363
public unsafe winmdroot.Foundation.
HRESULT
get_Attributes(uint* pDwAttr)
365
return ((delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[16])((IPicture*)Unsafe.AsPointer(ref this), pDwAttr);
368
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
372
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
389
internal delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
395
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
> get_Handle_4;
397
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
> get_hPal_5;
399
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.
HRESULT
> get_Type_6;
401
internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.
HRESULT
> get_Width_7;
403
internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.
HRESULT
> get_Height_8;
405
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,int ,int ,int ,int ,int ,int ,int ,int ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.
HRESULT
> Render_9;
407
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.
HRESULT
> set_hPal_10;
409
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.
HRESULT
> get_CurDC_11;
411
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC* ,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.
HRESULT
> SelectPicture_12;
413
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
> get_KeepOriginalFormat_13;
415
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.
HRESULT
> put_KeepOriginalFormat_14;
417
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.
HRESULT
> PictureChanged_15;
419
internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,int* ,winmdroot.Foundation.
HRESULT
> SaveAsFile_16;
421
internal delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.
HRESULT
> get_Attributes_17;
433
unsafe winmdroot.Foundation.
HRESULT
get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle);
436
unsafe winmdroot.Foundation.
HRESULT
get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal);
439
unsafe winmdroot.Foundation.
HRESULT
get_Type(winmdroot.System.Ole.PICTYPE* pType);
442
unsafe winmdroot.Foundation.
HRESULT
get_Width(int* pWidth);
445
unsafe winmdroot.Foundation.
HRESULT
get_Height(int* pHeight);
448
unsafe winmdroot.Foundation.
HRESULT
Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, winmdroot.Foundation.RECT* pRcWBounds);
451
winmdroot.Foundation.
HRESULT
set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal);
454
unsafe winmdroot.Foundation.
HRESULT
get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC);
457
unsafe winmdroot.Foundation.
HRESULT
SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut);
460
unsafe winmdroot.Foundation.
HRESULT
get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep);
463
winmdroot.Foundation.
HRESULT
put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep);
466
winmdroot.Foundation.
HRESULT
PictureChanged();
469
unsafe winmdroot.Foundation.
HRESULT
SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize);
472
unsafe winmdroot.Foundation.
HRESULT
get_Attributes(uint* pDwAttr);
Windows.Win32.IPictureDisp.g.cs (25)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IPictureDisp*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(out uint pctinfo)
60
winmdroot.Foundation.
HRESULT
__result = this.GetTypeInfoCount(pctinfoLocal);
65
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoCount(uint* pctinfo)
67
return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IPictureDisp*)Unsafe.AsPointer(ref this), pctinfo);
70
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo)
72
return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IPictureDisp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo);
76
internal unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId)
85
winmdroot.Foundation.
HRESULT
__result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal);
92
public unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId)
94
return ((delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IPictureDisp*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId);
98
internal unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr)
104
winmdroot.Foundation.
HRESULT
__result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr);
110
public unsafe winmdroot.Foundation.
HRESULT
Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr)
112
return ((delegate *unmanaged [Stdcall]<IPictureDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IPictureDisp*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
115
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
119
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
136
internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
142
internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.
HRESULT
> GetTypeInfoCount_4;
144
internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfo_5;
146
internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.
HRESULT
> GetIDsOfNames_6;
148
internal delegate *unmanaged [Stdcall]<IPictureDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
> Invoke_7;
Windows.Win32.IRecordInfo.g.cs (79)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IRecordInfo*)Unsafe.AsPointer(ref this), riid, ppvObject);
64
public unsafe winmdroot.Foundation.
HRESULT
RecordInit(void* pvNew)
66
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IRecordInfo*)Unsafe.AsPointer(ref this), pvNew);
76
public unsafe winmdroot.Foundation.
HRESULT
RecordClear(void* pvExisting)
78
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting);
89
public unsafe winmdroot.Foundation.
HRESULT
RecordCopy(void* pvExisting, void* pvNew)
91
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting, pvNew);
95
internal unsafe winmdroot.Foundation.
HRESULT
GetGuid(out global::System.Guid pguid)
99
winmdroot.Foundation.
HRESULT
__result = this.GetGuid(pguidLocal);
113
public unsafe winmdroot.Foundation.
HRESULT
GetGuid(global::System.Guid* pguid)
115
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IRecordInfo*)Unsafe.AsPointer(ref this), pguid);
125
public unsafe winmdroot.Foundation.
HRESULT
GetName(winmdroot.Foundation.BSTR* pbstrName)
127
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IRecordInfo*)Unsafe.AsPointer(ref this), pbstrName);
131
internal unsafe winmdroot.Foundation.
HRESULT
GetSize(out uint pcbSize)
135
winmdroot.Foundation.
HRESULT
__result = this.GetSize(pcbSizeLocal);
149
public unsafe winmdroot.Foundation.
HRESULT
GetSize(uint* pcbSize)
151
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IRecordInfo*)Unsafe.AsPointer(ref this), pcbSize);
161
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo)
163
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IRecordInfo*)Unsafe.AsPointer(ref this), ppTypeInfo);
167
internal unsafe winmdroot.Foundation.
HRESULT
GetField(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField)
173
winmdroot.Foundation.
HRESULT
__result = this.GetField(pvData, szFieldNameLocal, pvarFieldLocal);
191
public unsafe winmdroot.Foundation.
HRESULT
GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField)
193
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IRecordInfo*)Unsafe.AsPointer(ref this), pvData, szFieldName, pvarField);
197
internal unsafe winmdroot.Foundation.
HRESULT
GetFieldNoCopy(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField, out void* ppvDataCArray)
205
winmdroot.Foundation.
HRESULT
__result = this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal);
225
public unsafe winmdroot.Foundation.
HRESULT
GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray)
227
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IRecordInfo*)Unsafe.AsPointer(ref this), pvData, szFieldName, pvarField, ppvDataCArray);
231
internal unsafe winmdroot.Foundation.
HRESULT
PutField(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField)
237
winmdroot.Foundation.
HRESULT
__result = this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal);
258
public unsafe winmdroot.Foundation.
HRESULT
PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField)
260
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IRecordInfo*)Unsafe.AsPointer(ref this), wFlags, pvData, szFieldName, pvarField);
264
internal unsafe winmdroot.Foundation.
HRESULT
PutFieldNoCopy(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField)
270
winmdroot.Foundation.
HRESULT
__result = this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal);
288
public unsafe winmdroot.Foundation.
HRESULT
PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField)
290
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IRecordInfo*)Unsafe.AsPointer(ref this), wFlags, pvData, szFieldName, pvarField);
294
internal unsafe winmdroot.Foundation.
HRESULT
GetFieldNames(ref uint pcNames, winmdroot.Foundation.BSTR* rgBstrNames)
298
winmdroot.Foundation.
HRESULT
__result = this.GetFieldNames(pcNamesLocal, rgBstrNames);
317
public unsafe winmdroot.Foundation.
HRESULT
GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames)
319
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((IRecordInfo*)Unsafe.AsPointer(ref this), pcNames, rgBstrNames);
348
internal unsafe winmdroot.Foundation.
HRESULT
RecordCreateCopy(void* pvSource, out void* ppvDest)
352
winmdroot.Foundation.
HRESULT
__result = this.RecordCreateCopy(pvSource, ppvDestLocal);
365
public unsafe winmdroot.Foundation.
HRESULT
RecordCreateCopy(void* pvSource, void** ppvDest)
367
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[17])((IRecordInfo*)Unsafe.AsPointer(ref this), pvSource, ppvDest);
380
public unsafe winmdroot.Foundation.
HRESULT
RecordDestroy(void* pvRecord)
382
return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[18])((IRecordInfo*)Unsafe.AsPointer(ref this), pvRecord);
385
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
389
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
406
internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
412
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
> RecordInit_4;
414
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
> RecordClear_5;
416
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.
HRESULT
> RecordCopy_6;
418
internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
> GetGuid_7;
420
internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetName_8;
422
internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.
HRESULT
> GetSize_9;
424
internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfo_10;
426
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
> GetField_11;
428
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,void** ,winmdroot.Foundation.
HRESULT
> GetFieldNoCopy_12;
430
internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
> PutField_13;
432
internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.
HRESULT
> PutFieldNoCopy_14;
434
internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetFieldNames_15;
440
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.
HRESULT
> RecordCreateCopy_18;
442
internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.
HRESULT
> RecordDestroy_19;
453
unsafe winmdroot.Foundation.
HRESULT
RecordInit(void* pvNew);
456
unsafe winmdroot.Foundation.
HRESULT
RecordClear(void* pvExisting);
459
unsafe winmdroot.Foundation.
HRESULT
RecordCopy(void* pvExisting, void* pvNew);
462
unsafe winmdroot.Foundation.
HRESULT
GetGuid(global::System.Guid* pguid);
465
unsafe winmdroot.Foundation.
HRESULT
GetName(winmdroot.Foundation.BSTR* pbstrName);
468
unsafe winmdroot.Foundation.
HRESULT
GetSize(uint* pcbSize);
471
unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo);
474
unsafe winmdroot.Foundation.
HRESULT
GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField);
477
unsafe winmdroot.Foundation.
HRESULT
GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray);
480
unsafe winmdroot.Foundation.
HRESULT
PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField);
483
unsafe winmdroot.Foundation.
HRESULT
PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField);
486
unsafe winmdroot.Foundation.
HRESULT
GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames);
495
unsafe winmdroot.Foundation.
HRESULT
RecordCreateCopy(void* pvSource, void** ppvDest);
498
unsafe winmdroot.Foundation.
HRESULT
RecordDestroy(void* pvRecord);
Windows.Win32.IRunningObjectTable.g.cs (41)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IRunningObjectTable*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, out uint pdwRegister)
60
winmdroot.Foundation.
HRESULT
__result = this.Register(grfFlags, punkObject, pmkObjectName, pdwRegisterLocal);
84
public unsafe winmdroot.Foundation.
HRESULT
Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister)
86
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.ROT_FLAGS ,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IMoniker* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IRunningObjectTable*)Unsafe.AsPointer(ref this), grfFlags, punkObject, pmkObjectName, pdwRegister);
97
public winmdroot.Foundation.
HRESULT
Revoke(uint dwRegister)
99
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister);
109
public unsafe winmdroot.Foundation.
HRESULT
IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName)
111
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName);
125
public unsafe winmdroot.Foundation.
HRESULT
GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject)
127
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName, ppunkObject);
131
internal unsafe winmdroot.Foundation.
HRESULT
NoteChangeTime(uint dwRegister, in global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime)
135
winmdroot.Foundation.
HRESULT
__result = this.NoteChangeTime(dwRegister, pfiletimeLocal);
150
public unsafe winmdroot.Foundation.
HRESULT
NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime)
152
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister, pfiletime);
156
internal unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, out global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime)
160
winmdroot.Foundation.
HRESULT
__result = this.GetTimeOfLastChange(pmkObjectName, pfiletimeLocal);
176
public unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime)
178
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName, pfiletime);
188
public unsafe winmdroot.Foundation.
HRESULT
EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker)
190
return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IRunningObjectTable*)Unsafe.AsPointer(ref this), ppenumMoniker);
193
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
197
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
214
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
220
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.ROT_FLAGS ,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IMoniker* ,uint* ,winmdroot.Foundation.
HRESULT
> Register_4;
222
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.
HRESULT
> Revoke_5;
224
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.
HRESULT
> IsRunning_6;
226
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.
HRESULT
> GetObject_7;
228
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
> NoteChangeTime_8;
230
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
> GetTimeOfLastChange_9;
232
internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.
HRESULT
> EnumRunning_10;
244
unsafe winmdroot.Foundation.
HRESULT
Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister);
247
winmdroot.Foundation.
HRESULT
Revoke(uint dwRegister);
250
unsafe winmdroot.Foundation.
HRESULT
IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName);
253
unsafe winmdroot.Foundation.
HRESULT
GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject);
256
unsafe winmdroot.Foundation.
HRESULT
NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime);
259
unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime);
262
unsafe winmdroot.Foundation.
HRESULT
EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker);
Windows.Win32.ISequentialStream.g.cs (15)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((ISequentialStream*)Unsafe.AsPointer(ref this), riid, ppvObject);
69
public unsafe winmdroot.Foundation.
HRESULT
Read(void* pv, uint cb, [Optional] uint* pcbRead)
71
return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead);
85
public unsafe winmdroot.Foundation.
HRESULT
Write(void* pv, uint cb, [Optional] uint* pcbWritten)
87
return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten);
90
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
94
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
111
internal delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
117
internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
> Read_4;
119
internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
> Write_5;
131
unsafe winmdroot.Foundation.
HRESULT
Read(void* pv, uint cb, [Optional] uint* pcbRead);
134
unsafe winmdroot.Foundation.
HRESULT
Write(void* pv, uint cb, [Optional] uint* pcbWritten);
Windows.Win32.IServiceProvider.g.cs (13)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IServiceProvider*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
internal unsafe winmdroot.Foundation.
HRESULT
QueryService(in global::System.Guid guidService, in global::System.Guid riid, out void* ppvObject)
63
winmdroot.Foundation.
HRESULT
__result = this.QueryService(guidServiceLocal, riidLocal, ppvObjectLocal);
76
public unsafe winmdroot.Foundation.
HRESULT
QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject)
78
return ((delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IServiceProvider*)Unsafe.AsPointer(ref this), guidService, riid, ppvObject);
81
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
85
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
102
internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
108
internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryService_4;
119
unsafe winmdroot.Foundation.
HRESULT
QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject);
Windows.Win32.IStorage.g.cs (91)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IStorage*)Unsafe.AsPointer(ref this), riid, ppvObject);
56
internal unsafe winmdroot.Foundation.
HRESULT
CreateStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm)
60
winmdroot.Foundation.
HRESULT
__result = this.CreateStream(pwcsNameLocal, grfMode, reserved1, reserved2, ppstm);
82
public unsafe winmdroot.Foundation.
HRESULT
CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm)
84
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, grfMode, reserved1, reserved2, ppstm);
88
internal unsafe winmdroot.Foundation.
HRESULT
OpenStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm)
92
winmdroot.Foundation.
HRESULT
__result = this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm);
110
public unsafe winmdroot.Foundation.
HRESULT
OpenStream(winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm)
112
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,void* ,winmdroot.System.Com.STGM ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, reserved1, grfMode, reserved2, ppstm);
116
internal unsafe winmdroot.Foundation.
HRESULT
CreateStorage(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
120
winmdroot.Foundation.
HRESULT
__result = this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg);
142
public unsafe winmdroot.Foundation.
HRESULT
CreateStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
144
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, grfMode, reserved1, reserved2, ppstg);
148
internal unsafe winmdroot.Foundation.
HRESULT
OpenStorage(string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, in ushort* snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
154
winmdroot.Foundation.
HRESULT
__result = this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg);
177
public unsafe winmdroot.Foundation.
HRESULT
OpenStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
179
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.System.Com.STGM ,ushort** ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pstgPriority, grfMode, snbExclude, reserved, ppstg);
183
internal unsafe winmdroot.Foundation.
HRESULT
CopyTo(ReadOnlySpan<global::System.Guid> rgiidExclude, ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest)
187
winmdroot.Foundation.
HRESULT
__result = this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExclude, pstgDest);
215
public unsafe winmdroot.Foundation.
HRESULT
CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest)
217
return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,global::System.Guid* ,ushort** ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IStorage*)Unsafe.AsPointer(ref this), ciidExclude, rgiidExclude, snbExclude, pstgDest);
221
internal unsafe winmdroot.Foundation.
HRESULT
MoveElementTo(string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, string pwcsNewName, uint grfFlags)
227
winmdroot.Foundation.
HRESULT
__result = this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags);
248
public unsafe winmdroot.Foundation.
HRESULT
MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags)
250
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pstgDest, pwcsNewName, grfFlags);
266
public winmdroot.Foundation.
HRESULT
Commit(uint grfCommitFlags)
268
return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IStorage*)Unsafe.AsPointer(ref this), grfCommitFlags);
279
public winmdroot.Foundation.
HRESULT
Revert()
281
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IStorage*)Unsafe.AsPointer(ref this));
285
internal unsafe winmdroot.Foundation.
HRESULT
EnumElements(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum)
287
winmdroot.Foundation.
HRESULT
__result = this.EnumElements(default, default, default, ppenum);
306
public unsafe winmdroot.Foundation.
HRESULT
EnumElements(uint reserved1, [Optional] void* reserved2, uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum)
308
return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,void* ,uint ,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IStorage*)Unsafe.AsPointer(ref this), reserved1, reserved2, reserved3, ppenum);
312
internal unsafe winmdroot.Foundation.
HRESULT
DestroyElement(string pwcsName)
316
winmdroot.Foundation.
HRESULT
__result = this.DestroyElement(pwcsNameLocal);
330
public winmdroot.Foundation.
HRESULT
DestroyElement(winmdroot.Foundation.PCWSTR pwcsName)
332
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IStorage*)Unsafe.AsPointer(ref this), pwcsName);
336
internal unsafe winmdroot.Foundation.
HRESULT
RenameElement(string pwcsOldName, string pwcsNewName)
342
winmdroot.Foundation.
HRESULT
__result = this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal);
364
public winmdroot.Foundation.
HRESULT
RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName)
366
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IStorage*)Unsafe.AsPointer(ref this), pwcsOldName, pwcsNewName);
370
internal unsafe winmdroot.Foundation.
HRESULT
SetElementTimes(string pwcsName, in global::System.Runtime.InteropServices.ComTypes.FILETIME pctime, in global::System.Runtime.InteropServices.ComTypes.FILETIME patime, in global::System.Runtime.InteropServices.ComTypes.FILETIME pmtime)
380
winmdroot.Foundation.
HRESULT
__result = this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal);
400
public unsafe winmdroot.Foundation.
HRESULT
SetElementTimes(winmdroot.Foundation.PCWSTR pwcsName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pctime, global::System.Runtime.InteropServices.ComTypes.FILETIME* patime, global::System.Runtime.InteropServices.ComTypes.FILETIME* pmtime)
402
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pctime, patime, pmtime);
406
internal unsafe winmdroot.Foundation.
HRESULT
SetClass(in global::System.Guid clsid)
410
winmdroot.Foundation.
HRESULT
__result = this.SetClass(clsidLocal);
424
public unsafe winmdroot.Foundation.
HRESULT
SetClass(global::System.Guid* clsid)
426
return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[15])((IStorage*)Unsafe.AsPointer(ref this), clsid);
436
public winmdroot.Foundation.
HRESULT
SetStateBits(uint grfStateBits, uint grfMask)
438
return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[16])((IStorage*)Unsafe.AsPointer(ref this), grfStateBits, grfMask);
442
internal unsafe winmdroot.Foundation.
HRESULT
Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag)
446
winmdroot.Foundation.
HRESULT
__result = this.Stat(pstatstgLocal, grfStatFlag);
467
public unsafe winmdroot.Foundation.
HRESULT
Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag)
469
return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[17])((IStorage*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag);
472
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
476
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
493
internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
499
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
> CreateStream_4;
501
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,void* ,winmdroot.System.Com.STGM ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
> OpenStream_5;
503
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.
HRESULT
> CreateStorage_6;
505
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.System.Com.STGM ,ushort** ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.
HRESULT
> OpenStorage_7;
507
internal delegate *unmanaged [Stdcall]<IStorage*,uint ,global::System.Guid* ,ushort** ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.
HRESULT
> CopyTo_8;
509
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.
HRESULT
> MoveElementTo_9;
511
internal delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.
HRESULT
> Commit_10;
513
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.
HRESULT
> Revert_11;
515
internal delegate *unmanaged [Stdcall]<IStorage*,uint ,void* ,uint ,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.
HRESULT
> EnumElements_12;
517
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.
HRESULT
> DestroyElement_13;
519
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.
HRESULT
> RenameElement_14;
521
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.
HRESULT
> SetElementTimes_15;
523
internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.
HRESULT
> SetClass_16;
525
internal delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.
HRESULT
> SetStateBits_17;
527
internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.
HRESULT
> Stat_18;
539
unsafe winmdroot.Foundation.
HRESULT
CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm);
542
unsafe winmdroot.Foundation.
HRESULT
OpenStream(winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm);
545
unsafe winmdroot.Foundation.
HRESULT
CreateStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg);
548
unsafe winmdroot.Foundation.
HRESULT
OpenStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg);
551
unsafe winmdroot.Foundation.
HRESULT
CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest);
554
unsafe winmdroot.Foundation.
HRESULT
MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags);
557
winmdroot.Foundation.
HRESULT
Commit(uint grfCommitFlags);
560
winmdroot.Foundation.
HRESULT
Revert();
563
unsafe winmdroot.Foundation.
HRESULT
EnumElements(uint reserved1, [Optional] void* reserved2, uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum);
566
winmdroot.Foundation.
HRESULT
DestroyElement(winmdroot.Foundation.PCWSTR pwcsName);
569
winmdroot.Foundation.
HRESULT
RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName);
572
unsafe winmdroot.Foundation.
HRESULT
SetElementTimes(winmdroot.Foundation.PCWSTR pwcsName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pctime, global::System.Runtime.InteropServices.ComTypes.FILETIME* patime, global::System.Runtime.InteropServices.ComTypes.FILETIME* pmtime);
575
unsafe winmdroot.Foundation.
HRESULT
SetClass(global::System.Guid* clsid);
578
winmdroot.Foundation.
HRESULT
SetStateBits(uint grfStateBits, uint grfMask);
581
unsafe winmdroot.Foundation.
HRESULT
Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
Windows.Win32.IStream.g.cs (53)
28
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
34
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
40
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
42
return ((delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IStream*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
public unsafe winmdroot.Foundation.
HRESULT
Read(void* pv, uint cb, [Optional] uint* pcbRead)
57
return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead);
60
public unsafe winmdroot.Foundation.
HRESULT
Write(void* pv, uint cb, [Optional] uint* pcbWritten)
62
return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten);
79
public unsafe winmdroot.Foundation.
HRESULT
Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition)
81
return ((delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((IStream*)Unsafe.AsPointer(ref this), dlibMove, dwOrigin, plibNewPosition);
93
public winmdroot.Foundation.
HRESULT
SetSize(ulong libNewSize)
95
return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((IStream*)Unsafe.AsPointer(ref this), libNewSize);
110
public unsafe winmdroot.Foundation.
HRESULT
CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten)
112
return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream* ,ulong ,ulong* ,ulong* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((IStream*)Unsafe.AsPointer(ref this), pstm, cb, pcbRead, pcbWritten);
127
public winmdroot.Foundation.
HRESULT
Commit(uint grfCommitFlags)
129
return ((delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((IStream*)Unsafe.AsPointer(ref this), grfCommitFlags);
137
public winmdroot.Foundation.
HRESULT
Revert()
139
return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((IStream*)Unsafe.AsPointer(ref this));
153
public winmdroot.Foundation.
HRESULT
LockRegion(ulong libOffset, ulong cb, uint dwLockType)
155
return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType);
169
public winmdroot.Foundation.
HRESULT
UnlockRegion(ulong libOffset, ulong cb, uint dwLockType)
171
return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType);
175
internal unsafe winmdroot.Foundation.
HRESULT
Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag)
179
winmdroot.Foundation.
HRESULT
__result = this.Stat(pstatstgLocal, grfStatFlag);
200
public unsafe winmdroot.Foundation.
HRESULT
Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag)
202
return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((IStream*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag);
217
public unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IStream** ppstm)
219
return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((IStream*)Unsafe.AsPointer(ref this), ppstm);
222
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
226
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
243
internal delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
249
internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
> Read_4;
251
internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
> Write_5;
253
internal delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.
HRESULT
> Seek_6;
255
internal delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.
HRESULT
> SetSize_7;
257
internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream* ,ulong ,ulong* ,ulong* ,winmdroot.Foundation.
HRESULT
> CopyTo_8;
259
internal delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.
HRESULT
> Commit_9;
261
internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.
HRESULT
> Revert_10;
263
internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.
HRESULT
> LockRegion_11;
265
internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.
HRESULT
> UnlockRegion_12;
267
internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.
HRESULT
> Stat_13;
269
internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.
HRESULT
> Clone_14;
281
unsafe new winmdroot.Foundation.
HRESULT
Read(void* pv, uint cb, [Optional] uint* pcbRead);
284
unsafe new winmdroot.Foundation.
HRESULT
Write(void* pv, uint cb, [Optional] uint* pcbWritten);
287
unsafe winmdroot.Foundation.
HRESULT
Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition);
290
winmdroot.Foundation.
HRESULT
SetSize(ulong libNewSize);
293
unsafe winmdroot.Foundation.
HRESULT
CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten);
296
winmdroot.Foundation.
HRESULT
Commit(uint grfCommitFlags);
299
winmdroot.Foundation.
HRESULT
Revert();
302
winmdroot.Foundation.
HRESULT
LockRegion(ulong libOffset, ulong cb, uint dwLockType);
305
winmdroot.Foundation.
HRESULT
UnlockRegion(ulong libOffset, ulong cb, uint dwLockType);
308
unsafe winmdroot.Foundation.
HRESULT
Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
311
unsafe winmdroot.Foundation.
HRESULT
Clone(winmdroot.System.Com.IStream** ppstm);
Windows.Win32.ITypeComp.g.cs (17)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((ITypeComp*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
internal unsafe winmdroot.Foundation.
HRESULT
Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, out winmdroot.System.Com.DESCKIND pDescKind, out winmdroot.System.Com.BINDPTR pBindPtr)
61
winmdroot.Foundation.
HRESULT
__result = this.Bind(szName, lHashVal, wFlags, ppTInfo, pDescKindLocal, pBindPtrLocal);
87
public unsafe winmdroot.Foundation.
HRESULT
Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.DESCKIND* pDescKind, winmdroot.System.Com.BINDPTR* pBindPtr)
89
return ((delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,ushort ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.DESCKIND* ,winmdroot.System.Com.BINDPTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((ITypeComp*)Unsafe.AsPointer(ref this), szName, lHashVal, wFlags, ppTInfo, pDescKind, pBindPtr);
102
public unsafe winmdroot.Foundation.
HRESULT
BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp)
104
return ((delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((ITypeComp*)Unsafe.AsPointer(ref this), szName, lHashVal, ppTInfo, ppTComp);
107
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
111
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
128
internal delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
134
internal delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,ushort ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.DESCKIND* ,winmdroot.System.Com.BINDPTR* ,winmdroot.Foundation.
HRESULT
> Bind_4;
136
internal delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
> BindType_5;
147
unsafe winmdroot.Foundation.
HRESULT
Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.DESCKIND* pDescKind, winmdroot.System.Com.BINDPTR* pBindPtr);
150
unsafe winmdroot.Foundation.
HRESULT
BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp);
Windows.Win32.ITypeInfo.g.cs (97)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((ITypeInfo*)Unsafe.AsPointer(ref this), riid, ppvObject);
55
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeAttr(out winmdroot.System.Com.TYPEATTR* ppTypeAttr)
59
winmdroot.Foundation.
HRESULT
__result = this.GetTypeAttr(ppTypeAttrLocal);
71
public unsafe winmdroot.Foundation.
HRESULT
GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr)
73
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[3])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTypeAttr);
83
public unsafe winmdroot.Foundation.
HRESULT
GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp)
85
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTComp);
89
internal unsafe winmdroot.Foundation.
HRESULT
GetFuncDesc(uint index, out winmdroot.System.Com.FUNCDESC* ppFuncDesc)
93
winmdroot.Foundation.
HRESULT
__result = this.GetFuncDesc(index, ppFuncDescLocal);
106
public unsafe winmdroot.Foundation.
HRESULT
GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc)
108
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppFuncDesc);
112
internal unsafe winmdroot.Foundation.
HRESULT
GetVarDesc(uint index, out winmdroot.System.Com.VARDESC* ppVarDesc)
116
winmdroot.Foundation.
HRESULT
__result = this.GetVarDesc(index, ppVarDescLocal);
129
public unsafe winmdroot.Foundation.
HRESULT
GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc)
131
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppVarDesc);
135
internal unsafe winmdroot.Foundation.
HRESULT
GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, out uint pcNames)
139
winmdroot.Foundation.
HRESULT
__result = this.GetNames(memid, rgBstrNames, cMaxNames, pcNamesLocal);
160
public unsafe winmdroot.Foundation.
HRESULT
GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames)
162
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, rgBstrNames, cMaxNames, pcNames);
166
internal unsafe winmdroot.Foundation.
HRESULT
GetRefTypeOfImplType(uint index, out uint pRefType)
170
winmdroot.Foundation.
HRESULT
__result = this.GetRefTypeOfImplType(index, pRefTypeLocal);
183
public unsafe winmdroot.Foundation.
HRESULT
GetRefTypeOfImplType(uint index, uint* pRefType)
185
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pRefType);
189
internal unsafe winmdroot.Foundation.
HRESULT
GetImplTypeFlags(uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags)
193
winmdroot.Foundation.
HRESULT
__result = this.GetImplTypeFlags(index, pImplTypeFlagsLocal);
206
public unsafe winmdroot.Foundation.
HRESULT
GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags)
208
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pImplTypeFlags);
212
internal unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId)
219
winmdroot.Foundation.
HRESULT
__result = this.GetIDsOfNames(rgszNamesLocal, (uint )pMemId.Length, pMemIdLocal);
238
public unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId)
240
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((ITypeInfo*)Unsafe.AsPointer(ref this), rgszNames, cNames, pMemId);
244
internal unsafe winmdroot.Foundation.
HRESULT
Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, ref winmdroot.System.Com.DISPPARAMS pDispParams, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr)
254
winmdroot.Foundation.
HRESULT
__result = this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal);
285
public unsafe winmdroot.Foundation.
HRESULT
Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr)
287
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,void* ,int ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((ITypeInfo*)Unsafe.AsPointer(ref this), pvInstance, memid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
291
internal unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int memid, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile)
295
winmdroot.Foundation.
HRESULT
__result = this.GetDocumentation(memid, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile);
316
public unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile)
318
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[12])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile);
322
internal unsafe winmdroot.Foundation.
HRESULT
GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal)
326
winmdroot.Foundation.
HRESULT
__result = this.GetDllEntry(memid, invKind, pBstrDllName, pBstrName, pwOrdinalLocal);
347
public unsafe winmdroot.Foundation.
HRESULT
GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal)
349
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[13])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, pBstrDllName, pBstrName, pwOrdinal);
360
public unsafe winmdroot.Foundation.
HRESULT
GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo)
362
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[14])((ITypeInfo*)Unsafe.AsPointer(ref this), hRefType, ppTInfo);
366
internal unsafe winmdroot.Foundation.
HRESULT
AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv)
370
winmdroot.Foundation.
HRESULT
__result = this.AddressOfMember(memid, invKind, ppvLocal);
387
public unsafe winmdroot.Foundation.
HRESULT
AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv)
389
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[15])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, ppv);
393
internal unsafe winmdroot.Foundation.
HRESULT
CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObj)
399
winmdroot.Foundation.
HRESULT
__result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal);
414
public unsafe winmdroot.Foundation.
HRESULT
CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj)
416
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[16])((ITypeInfo*)Unsafe.AsPointer(ref this), pUnkOuter, riid, ppvObj);
431
public unsafe winmdroot.Foundation.
HRESULT
GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops)
433
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[17])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrMops);
437
internal unsafe winmdroot.Foundation.
HRESULT
GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex)
441
winmdroot.Foundation.
HRESULT
__result = this.GetContainingTypeLib(ppTLib, pIndexLocal);
456
public unsafe winmdroot.Foundation.
HRESULT
GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex)
458
return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[18])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTLib, pIndex);
518
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
522
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
539
internal delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
545
internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.
HRESULT
> GetTypeAttr_4;
547
internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
> GetTypeComp_5;
549
internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.
HRESULT
> GetFuncDesc_6;
551
internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.
HRESULT
> GetVarDesc_7;
553
internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.
HRESULT
> GetNames_8;
555
internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.
HRESULT
> GetRefTypeOfImplType_9;
557
internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.
HRESULT
> GetImplTypeFlags_10;
559
internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.
HRESULT
> GetIDsOfNames_11;
561
internal delegate *unmanaged [Stdcall]<ITypeInfo*,void* ,int ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.
HRESULT
> Invoke_12;
563
internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetDocumentation_13;
565
internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.
HRESULT
> GetDllEntry_14;
567
internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetRefTypeInfo_15;
569
internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.
HRESULT
> AddressOfMember_16;
571
internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> CreateInstance_17;
573
internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetMops_18;
575
internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.
HRESULT
> GetContainingTypeLib_19;
592
unsafe winmdroot.Foundation.
HRESULT
GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr);
595
unsafe winmdroot.Foundation.
HRESULT
GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp);
598
unsafe winmdroot.Foundation.
HRESULT
GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc);
601
unsafe winmdroot.Foundation.
HRESULT
GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc);
604
unsafe winmdroot.Foundation.
HRESULT
GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames);
607
unsafe winmdroot.Foundation.
HRESULT
GetRefTypeOfImplType(uint index, uint* pRefType);
610
unsafe winmdroot.Foundation.
HRESULT
GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags);
613
unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId);
616
unsafe winmdroot.Foundation.
HRESULT
Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr);
619
unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile);
622
unsafe winmdroot.Foundation.
HRESULT
GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal);
625
unsafe winmdroot.Foundation.
HRESULT
GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo);
628
unsafe winmdroot.Foundation.
HRESULT
AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv);
631
unsafe winmdroot.Foundation.
HRESULT
CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj);
634
unsafe winmdroot.Foundation.
HRESULT
GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops);
637
unsafe winmdroot.Foundation.
HRESULT
GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex);
Windows.Win32.ITypeLib.g.cs (51)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
39
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
41
return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((ITypeLib*)Unsafe.AsPointer(ref this), riid, ppvObject);
72
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo)
74
return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[4])((ITypeLib*)Unsafe.AsPointer(ref this), index, ppTInfo);
78
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoType(uint index, out winmdroot.System.Com.TYPEKIND pTKind)
82
winmdroot.Foundation.
HRESULT
__result = this.GetTypeInfoType(index, pTKindLocal);
97
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind)
99
return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[5])((ITypeLib*)Unsafe.AsPointer(ref this), index, pTKind);
103
internal unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoOfGuid(in global::System.Guid guid, winmdroot.System.Com.ITypeInfo** ppTinfo)
107
winmdroot.Foundation.
HRESULT
__result = this.GetTypeInfoOfGuid(guidLocal, ppTinfo);
122
public unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo)
124
return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[6])((ITypeLib*)Unsafe.AsPointer(ref this), guid, ppTinfo);
128
internal unsafe winmdroot.Foundation.
HRESULT
GetLibAttr(out winmdroot.System.Com.TLIBATTR* ppTLibAttr)
132
winmdroot.Foundation.
HRESULT
__result = this.GetLibAttr(ppTLibAttrLocal);
144
public unsafe winmdroot.Foundation.
HRESULT
GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr)
146
return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[7])((ITypeLib*)Unsafe.AsPointer(ref this), ppTLibAttr);
160
public unsafe winmdroot.Foundation.
HRESULT
GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp)
162
return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[8])((ITypeLib*)Unsafe.AsPointer(ref this), ppTComp);
166
internal unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int index, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile)
170
winmdroot.Foundation.
HRESULT
__result = this.GetDocumentation(index, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile);
186
public unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile)
188
return ((delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[9])((ITypeLib*)Unsafe.AsPointer(ref this), index, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile);
192
internal unsafe winmdroot.Foundation.
HRESULT
IsName(ref Span<char>szNameBuf, uint lHashVal, out winmdroot.Foundation.BOOL pfName)
200
winmdroot.Foundation.
HRESULT
__result = this.IsName(wstrszNameBuf, lHashVal, pfNameLocal);
218
public unsafe winmdroot.Foundation.
HRESULT
IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName)
220
return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[10])((ITypeLib*)Unsafe.AsPointer(ref this), szNameBuf, lHashVal, pfName);
224
internal unsafe winmdroot.Foundation.
HRESULT
FindName(ref Span<char>szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ref ushort pcFound)
232
winmdroot.Foundation.
HRESULT
__result = this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemId, pcFoundLocal);
253
public unsafe winmdroot.Foundation.
HRESULT
FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound)
255
return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,int* ,ushort* ,winmdroot.Foundation.
HRESULT
>)lpVtbl[11])((ITypeLib*)Unsafe.AsPointer(ref this), szNameBuf, lHashVal, ppTInfo, rgMemId, pcFound);
277
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
281
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
298
internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
306
internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfo_5;
308
internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.
HRESULT
> GetTypeInfoType_6;
310
internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.
HRESULT
> GetTypeInfoOfGuid_7;
312
internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.
HRESULT
> GetLibAttr_8;
314
internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.
HRESULT
> GetTypeComp_9;
316
internal delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.
HRESULT
> GetDocumentation_10;
318
internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.
HRESULT
> IsName_11;
320
internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,int* ,ushort* ,winmdroot.Foundation.
HRESULT
> FindName_12;
336
unsafe winmdroot.Foundation.
HRESULT
GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo);
339
unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind);
342
unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo);
345
unsafe winmdroot.Foundation.
HRESULT
GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr);
348
unsafe winmdroot.Foundation.
HRESULT
GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp);
351
unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile);
354
unsafe winmdroot.Foundation.
HRESULT
IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName);
357
unsafe winmdroot.Foundation.
HRESULT
FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound);
Windows.Win32.IUnknown.g.cs (7)
27
internal unsafe winmdroot.Foundation.
HRESULT
QueryInterface(in global::System.Guid riid, out void* ppvObject)
33
winmdroot.Foundation.
HRESULT
__result = this.QueryInterface(riidLocal, ppvObjectLocal);
53
public unsafe winmdroot.Foundation.
HRESULT
QueryInterface(global::System.Guid* riid, void** ppvObject)
55
return ((delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
>)lpVtbl[0])((IUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject);
80
internal unsafe global::Windows.Win32.Foundation.
HRESULT
QueryInterface<T>(out T* ppv)
84
var
hr = this.QueryInterface(typeof(T).GUID, out void* pv);
101
internal delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.
HRESULT
> QueryInterface_1;
Windows.Win32.PInvokeCore.OLE32.dll.g.cs (19)
27
internal static unsafe global::Windows.Win32.Foundation.
HRESULT
CoCreateInstance<T>(in Guid rclsid, global::Windows.Win32.System.Com.IUnknown* pUnkOuter, global::Windows.Win32.System.Com.CLSCTX dwClsContext, out T* ppv)
31
global::Windows.Win32.Foundation.
HRESULT
hr = CoCreateInstance(rclsid, pUnkOuter, dwClsContext, typeof(T).GUID, out void* o);
38
internal static unsafe winmdroot.Foundation.
HRESULT
CoCreateInstance(in global::System.Guid rclsid, winmdroot.System.Com.IUnknown* pUnkOuter, winmdroot.System.Com.CLSCTX dwClsContext, in global::System.Guid riid, out void* ppv)
46
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.CoCreateInstance(rclsidLocal, pUnkOuter, dwClsContext, riidLocal, ppvLocal);
71
internal static extern unsafe winmdroot.Foundation.
HRESULT
CoCreateInstance(global::System.Guid* rclsid, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, winmdroot.System.Com.CLSCTX dwClsContext, global::System.Guid* riid, void** ppv);
75
internal static unsafe winmdroot.Foundation.
HRESULT
DoDragDrop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.Ole.IDropSource* pDropSource, winmdroot.System.Ole.DROPEFFECT dwOKEffects, out winmdroot.System.Ole.DROPEFFECT pdwEffect)
79
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.DoDragDrop(pDataObj, pDropSource, dwOKEffects, pdwEffectLocal);
101
internal static extern unsafe winmdroot.Foundation.
HRESULT
DoDragDrop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.Ole.IDropSource* pDropSource, winmdroot.System.Ole.DROPEFFECT dwOKEffects, winmdroot.System.Ole.DROPEFFECT* pdwEffect);
124
internal static extern winmdroot.Foundation.
HRESULT
OleFlushClipboard();
140
internal static extern unsafe winmdroot.Foundation.
HRESULT
OleGetClipboard(winmdroot.System.Com.IDataObject** ppDataObj);
144
internal static unsafe winmdroot.Foundation.
HRESULT
OleInitialize()
146
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.OleInitialize(default);
164
internal static extern unsafe winmdroot.Foundation.
HRESULT
OleInitialize(void* pvReserved);
179
internal static extern unsafe winmdroot.Foundation.
HRESULT
OleSetClipboard(winmdroot.System.Com.IDataObject* pDataObj);
192
internal static unsafe winmdroot.Foundation.
HRESULT
PropVariantClear(ref winmdroot.System.Com.StructuredStorage.PROPVARIANT pvar)
196
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.PropVariantClear(pvarLocal);
213
internal static extern unsafe winmdroot.Foundation.
HRESULT
PropVariantClear(winmdroot.System.Com.StructuredStorage.PROPVARIANT* pvar);
228
internal static extern unsafe winmdroot.Foundation.
HRESULT
RegisterDragDrop(winmdroot.Foundation.HWND hwnd, winmdroot.System.Ole.IDropTarget* pDropTarget);
262
internal static extern winmdroot.Foundation.
HRESULT
RevokeDragDrop(winmdroot.Foundation.HWND hwnd);
Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (19)
35
internal static unsafe winmdroot.Foundation.
HRESULT
LoadRegTypeLib(in global::System.Guid rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib)
39
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.LoadRegTypeLib(rguidLocal, wVerMajor, wVerMinor, lcid, pptlib);
62
internal static extern unsafe winmdroot.Foundation.
HRESULT
LoadRegTypeLib(global::System.Guid* rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib);
66
internal static unsafe winmdroot.Foundation.
HRESULT
OleCreatePictureIndirect(in winmdroot.System.Ole.PICTDESC lpPictDesc, in global::System.Guid riid, winmdroot.Foundation.BOOL fOwn, out void* lplpvObj)
74
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.OleCreatePictureIndirect(lpPictDescLocal, riidLocal, fOwn, lplpvObjLocal);
93
internal static extern unsafe winmdroot.Foundation.
HRESULT
OleCreatePictureIndirect(winmdroot.System.Ole.PICTDESC* lpPictDesc, global::System.Guid* riid, winmdroot.Foundation.BOOL fOwn, void** lplpvObj);
144
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayDestroy(winmdroot.System.Com.SAFEARRAY* psa);
147
internal static unsafe winmdroot.Foundation.
HRESULT
SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv)
151
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.SafeArrayGetElement(psa, rgIndicesLocal, pv);
166
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv);
179
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayGetRecordInfo(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Ole.IRecordInfo** prinfo);
182
internal static unsafe winmdroot.Foundation.
HRESULT
SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, out winmdroot.System.Variant.VARENUM pvt)
186
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.SafeArrayGetVartype(psa, pvtLocal);
203
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Variant.VARENUM* pvt);
216
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayLock(winmdroot.System.Com.SAFEARRAY* psa);
219
internal static unsafe winmdroot.Foundation.
HRESULT
SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv)
223
winmdroot.Foundation.
HRESULT
__result = PInvokeCore.SafeArrayPutElement(psa, rgIndicesLocal, pv);
241
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv);
251
internal static extern unsafe winmdroot.Foundation.
HRESULT
SafeArrayUnlock(winmdroot.System.Com.SAFEARRAY* psa);
Windows.Win32.System_Com_IBindCtx_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
SetBindOptions(this winmdroot.System.Com.IBindCtx.Interface @this, in winmdroot.System.Com.BIND_OPTS pbindopts)
28
winmdroot.Foundation.
HRESULT
__result = @this.SetBindOptions(pbindoptsLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetBindOptions(this winmdroot.System.Com.IBindCtx.Interface @this, ref winmdroot.System.Com.BIND_OPTS pbindopts)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetBindOptions(pbindoptsLocal);
Windows.Win32.System_Com_IDataObject_Extensions.g.cs (12)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetcIn, out winmdroot.System.Com.STGMEDIUM pmedium)
30
winmdroot.Foundation.
HRESULT
__result = @this.GetData(pformatetcInLocal, pmediumLocal);
37
internal static unsafe winmdroot.Foundation.
HRESULT
GetDataHere(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, ref winmdroot.System.Com.STGMEDIUM pmedium)
43
winmdroot.Foundation.
HRESULT
__result = @this.GetDataHere(pformatetcLocal, pmediumLocal);
50
internal static unsafe winmdroot.Foundation.
HRESULT
QueryGetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc)
54
winmdroot.Foundation.
HRESULT
__result = @this.QueryGetData(pformatetcLocal);
60
internal static unsafe winmdroot.Foundation.
HRESULT
GetCanonicalFormatEtc(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatectIn, out winmdroot.System.Com.FORMATETC pformatetcOut)
66
winmdroot.Foundation.
HRESULT
__result = @this.GetCanonicalFormatEtc(pformatectInLocal, pformatetcOutLocal);
73
internal static unsafe winmdroot.Foundation.
HRESULT
SetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pmedium, winmdroot.Foundation.BOOL fRelease)
79
winmdroot.Foundation.
HRESULT
__result = @this.SetData(pformatetcLocal, pmediumLocal, fRelease);
86
internal static unsafe winmdroot.Foundation.
HRESULT
DAdvise(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection)
92
winmdroot.Foundation.
HRESULT
__result = @this.DAdvise(pformatetcLocal, advf, pAdvSink, pdwConnectionLocal);
Windows.Win32.System_Com_IEnumFORMATETC_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Next(this winmdroot.System.Com.IEnumFORMATETC.Interface @this, Span<winmdroot.System.Com.FORMATETC> rgelt, uint* pceltFetched)
28
winmdroot.Foundation.
HRESULT
__result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IEnumSTATDATA_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Next(this winmdroot.System.Com.IEnumSTATDATA.Interface @this, Span<winmdroot.System.Com.STATDATA> rgelt, uint* pceltFetched)
28
winmdroot.Foundation.
HRESULT
__result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IEnumString_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Next(this winmdroot.System.Com.IEnumString.Interface @this, Span<winmdroot.Foundation.PWSTR> rgelt, uint* pceltFetched)
28
winmdroot.Foundation.
HRESULT
__result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IGlobalInterfaceTable_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
RegisterInterfaceInGlobal(this winmdroot.System.Com.IGlobalInterfaceTable.Interface @this, winmdroot.System.Com.IUnknown* pUnk, in global::System.Guid riid, out uint pdwCookie)
30
winmdroot.Foundation.
HRESULT
__result = @this.RegisterInterfaceInGlobal(pUnk, riidLocal, pdwCookieLocal);
37
internal static unsafe winmdroot.Foundation.
HRESULT
GetInterfaceFromGlobal(this winmdroot.System.Com.IGlobalInterfaceTable.Interface @this, uint dwCookie, in global::System.Guid riid, out void* ppv)
43
winmdroot.Foundation.
HRESULT
__result = @this.GetInterfaceFromGlobal(dwCookie, riidLocal, ppvLocal);
Windows.Win32.System_Com_IMoniker_Extensions.g.cs (18)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetClassID(this winmdroot.System.Com.IMoniker.Interface @this, out global::System.Guid pClassID)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetClassID(pClassIDLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(this winmdroot.System.Com.IMoniker.Interface @this, out ulong pcbSize)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetSizeMax(pcbSizeLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
BindToObject(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riidResult, out void* ppvResult)
50
winmdroot.Foundation.
HRESULT
__result = @this.BindToObject(pbc, pmkToLeft, riidResultLocal, ppvResultLocal);
57
internal static unsafe winmdroot.Foundation.
HRESULT
BindToStorage(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riid, out void* ppvObj)
63
winmdroot.Foundation.
HRESULT
__result = @this.BindToStorage(pbc, pmkToLeft, riidLocal, ppvObjLocal);
70
internal static unsafe winmdroot.Foundation.
HRESULT
Hash(this winmdroot.System.Com.IMoniker.Interface @this, out uint pdwHash)
74
winmdroot.Foundation.
HRESULT
__result = @this.Hash(pdwHashLocal);
80
internal static unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out global::System.Runtime.InteropServices.ComTypes.FILETIME pFileTime)
84
winmdroot.Foundation.
HRESULT
__result = @this.GetTimeOfLastChange(pbc, pmkToLeft, pFileTimeLocal);
90
internal static unsafe winmdroot.Foundation.
HRESULT
GetDisplayName(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out winmdroot.Foundation.PWSTR ppszDisplayName)
94
winmdroot.Foundation.
HRESULT
__result = @this.GetDisplayName(pbc, pmkToLeft, ppszDisplayNameLocal);
100
internal static unsafe winmdroot.Foundation.
HRESULT
ParseDisplayName(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut)
104
winmdroot.Foundation.
HRESULT
__result = @this.ParseDisplayName(pbc, pmkToLeft, pszDisplayName, pchEatenLocal, ppmkOut);
110
internal static unsafe winmdroot.Foundation.
HRESULT
IsSystemMoniker(this winmdroot.System.Com.IMoniker.Interface @this, out uint pdwMksys)
114
winmdroot.Foundation.
HRESULT
__result = @this.IsSystemMoniker(pdwMksysLocal);
Windows.Win32.System_Com_IPersist_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetClassID(this winmdroot.System.Com.IPersist.Interface @this, out global::System.Guid pClassID)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetClassID(pClassIDLocal);
Windows.Win32.System_Com_IPersistStream_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetClassID(this winmdroot.System.Com.IPersistStream.Interface @this, out global::System.Guid pClassID)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetClassID(pClassIDLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetSizeMax(this winmdroot.System.Com.IPersistStream.Interface @this, out ulong pcbSize)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetSizeMax(pcbSizeLocal);
Windows.Win32.System_Com_IRunningObjectTable_Extensions.g.cs (6)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Register(this winmdroot.System.Com.IRunningObjectTable.Interface @this, winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, out uint pdwRegister)
28
winmdroot.Foundation.
HRESULT
__result = @this.Register(grfFlags, punkObject, pmkObjectName, pdwRegisterLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
NoteChangeTime(this winmdroot.System.Com.IRunningObjectTable.Interface @this, uint dwRegister, in global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime)
38
winmdroot.Foundation.
HRESULT
__result = @this.NoteChangeTime(dwRegister, pfiletimeLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
GetTimeOfLastChange(this winmdroot.System.Com.IRunningObjectTable.Interface @this, winmdroot.System.Com.IMoniker* pmkObjectName, out global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime)
48
winmdroot.Foundation.
HRESULT
__result = @this.GetTimeOfLastChange(pmkObjectName, pfiletimeLocal);
Windows.Win32.System_Com_IServiceProvider_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
QueryService(this winmdroot.System.Com.IServiceProvider.Interface @this, in global::System.Guid guidService, in global::System.Guid riid, out void* ppvObject)
32
winmdroot.Foundation.
HRESULT
__result = @this.QueryService(guidServiceLocal, riidLocal, ppvObjectLocal);
Windows.Win32.System_Com_IStream_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Stat(this winmdroot.System.Com.IStream.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag)
28
winmdroot.Foundation.
HRESULT
__result = @this.Stat(pstatstgLocal, grfStatFlag);
Windows.Win32.System_Com_ITypeComp_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Bind(this winmdroot.System.Com.ITypeComp.Interface @this, winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, out winmdroot.System.Com.DESCKIND pDescKind, out winmdroot.System.Com.BINDPTR pBindPtr)
30
winmdroot.Foundation.
HRESULT
__result = @this.Bind(szName, lHashVal, wFlags, ppTInfo, pDescKindLocal, pBindPtrLocal);
Windows.Win32.System_Com_ITypeInfo_Extensions.g.cs (26)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetTypeAttr(this winmdroot.System.Com.ITypeInfo.Interface @this, out winmdroot.System.Com.TYPEATTR* ppTypeAttr)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetTypeAttr(ppTypeAttrLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetFuncDesc(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.FUNCDESC* ppFuncDesc)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetFuncDesc(index, ppFuncDescLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
GetVarDesc(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.VARDESC* ppVarDesc)
48
winmdroot.Foundation.
HRESULT
__result = @this.GetVarDesc(index, ppVarDescLocal);
54
internal static unsafe winmdroot.Foundation.
HRESULT
GetNames(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, out uint pcNames)
58
winmdroot.Foundation.
HRESULT
__result = @this.GetNames(memid, rgBstrNames, cMaxNames, pcNamesLocal);
64
internal static unsafe winmdroot.Foundation.
HRESULT
GetRefTypeOfImplType(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out uint pRefType)
68
winmdroot.Foundation.
HRESULT
__result = @this.GetRefTypeOfImplType(index, pRefTypeLocal);
74
internal static unsafe winmdroot.Foundation.
HRESULT
GetImplTypeFlags(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags)
78
winmdroot.Foundation.
HRESULT
__result = @this.GetImplTypeFlags(index, pImplTypeFlagsLocal);
84
internal static unsafe winmdroot.Foundation.
HRESULT
GetIDsOfNames(this winmdroot.System.Com.ITypeInfo.Interface @this, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId)
91
winmdroot.Foundation.
HRESULT
__result = @this.GetIDsOfNames(rgszNamesLocal, (uint )pMemId.Length, pMemIdLocal);
98
internal static unsafe winmdroot.Foundation.
HRESULT
Invoke(this winmdroot.System.Com.ITypeInfo.Interface @this, void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, ref winmdroot.System.Com.DISPPARAMS pDispParams, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr)
108
winmdroot.Foundation.
HRESULT
__result = @this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal);
117
internal static unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile)
121
winmdroot.Foundation.
HRESULT
__result = @this.GetDocumentation(memid, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile);
127
internal static unsafe winmdroot.Foundation.
HRESULT
GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal)
131
winmdroot.Foundation.
HRESULT
__result = @this.GetDllEntry(memid, invKind, pBstrDllName, pBstrName, pwOrdinalLocal);
137
internal static unsafe winmdroot.Foundation.
HRESULT
AddressOfMember(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv)
141
winmdroot.Foundation.
HRESULT
__result = @this.AddressOfMember(memid, invKind, ppvLocal);
147
internal static unsafe winmdroot.Foundation.
HRESULT
CreateInstance(this winmdroot.System.Com.ITypeInfo.Interface @this, winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObj)
153
winmdroot.Foundation.
HRESULT
__result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal);
160
internal static unsafe winmdroot.Foundation.
HRESULT
GetContainingTypeLib(this winmdroot.System.Com.ITypeInfo.Interface @this, winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex)
164
winmdroot.Foundation.
HRESULT
__result = @this.GetContainingTypeLib(ppTLib, pIndexLocal);
Windows.Win32.System_Com_ITypeLib_Extensions.g.cs (12)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoType(this winmdroot.System.Com.ITypeLib.Interface @this, uint index, out winmdroot.System.Com.TYPEKIND pTKind)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetTypeInfoType(index, pTKindLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetTypeInfoOfGuid(this winmdroot.System.Com.ITypeLib.Interface @this, in global::System.Guid guid, winmdroot.System.Com.ITypeInfo** ppTinfo)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetTypeInfoOfGuid(guidLocal, ppTinfo);
44
internal static unsafe winmdroot.Foundation.
HRESULT
GetLibAttr(this winmdroot.System.Com.ITypeLib.Interface @this, out winmdroot.System.Com.TLIBATTR* ppTLibAttr)
48
winmdroot.Foundation.
HRESULT
__result = @this.GetLibAttr(ppTLibAttrLocal);
54
internal static unsafe winmdroot.Foundation.
HRESULT
GetDocumentation(this winmdroot.System.Com.ITypeLib.Interface @this, int index, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile)
58
winmdroot.Foundation.
HRESULT
__result = @this.GetDocumentation(index, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile);
64
internal static unsafe winmdroot.Foundation.
HRESULT
IsName(this winmdroot.System.Com.ITypeLib.Interface @this, ref Span<char>szNameBuf, uint lHashVal, out winmdroot.Foundation.BOOL pfName)
72
winmdroot.Foundation.
HRESULT
__result = @this.IsName(wstrszNameBuf, lHashVal, pfNameLocal);
80
internal static unsafe winmdroot.Foundation.
HRESULT
FindName(this winmdroot.System.Com.ITypeLib.Interface @this, ref Span<char>szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ref ushort pcFound)
88
winmdroot.Foundation.
HRESULT
__result = @this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemId, pcFoundLocal);
Windows.Win32.System_Com_StructuredStorage_IEnumSTATSTG_Extensions.g.cs (2)
24
internal static unsafe winmdroot.Foundation.
HRESULT
Next(this winmdroot.System.Com.StructuredStorage.IEnumSTATSTG.Interface @this, Span<winmdroot.System.Com.STATSTG> rgelt, uint* pceltFetched)
28
winmdroot.Foundation.
HRESULT
__result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_StructuredStorage_IStorage_Extensions.g.cs (24)
24
internal static unsafe winmdroot.Foundation.
HRESULT
CreateStream(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm)
28
winmdroot.Foundation.
HRESULT
__result = @this.CreateStream(pwcsNameLocal, grfMode, reserved1, reserved2, ppstm);
34
internal static unsafe winmdroot.Foundation.
HRESULT
OpenStream(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm)
38
winmdroot.Foundation.
HRESULT
__result = @this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm);
44
internal static unsafe winmdroot.Foundation.
HRESULT
CreateStorage(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
48
winmdroot.Foundation.
HRESULT
__result = @this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg);
54
internal static unsafe winmdroot.Foundation.
HRESULT
OpenStorage(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, in ushort* snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg)
60
winmdroot.Foundation.
HRESULT
__result = @this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg);
67
internal static unsafe winmdroot.Foundation.
HRESULT
CopyTo(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, ReadOnlySpan<global::System.Guid> rgiidExclude, ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest)
71
winmdroot.Foundation.
HRESULT
__result = @this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExclude, pstgDest);
77
internal static unsafe winmdroot.Foundation.
HRESULT
MoveElementTo(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, string pwcsNewName, uint grfFlags)
83
winmdroot.Foundation.
HRESULT
__result = @this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags);
90
internal static unsafe winmdroot.Foundation.
HRESULT
EnumElements(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum)
92
winmdroot.Foundation.
HRESULT
__result = @this.EnumElements(default, default, default, ppenum);
97
internal static unsafe winmdroot.Foundation.
HRESULT
DestroyElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName)
101
winmdroot.Foundation.
HRESULT
__result = @this.DestroyElement(pwcsNameLocal);
107
internal static unsafe winmdroot.Foundation.
HRESULT
RenameElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsOldName, string pwcsNewName)
113
winmdroot.Foundation.
HRESULT
__result = @this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal);
120
internal static unsafe winmdroot.Foundation.
HRESULT
SetElementTimes(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, in global::System.Runtime.InteropServices.ComTypes.FILETIME pctime, in global::System.Runtime.InteropServices.ComTypes.FILETIME patime, in global::System.Runtime.InteropServices.ComTypes.FILETIME pmtime)
130
winmdroot.Foundation.
HRESULT
__result = @this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal);
139
internal static unsafe winmdroot.Foundation.
HRESULT
SetClass(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, in global::System.Guid clsid)
143
winmdroot.Foundation.
HRESULT
__result = @this.SetClass(clsidLocal);
149
internal static unsafe winmdroot.Foundation.
HRESULT
Stat(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag)
153
winmdroot.Foundation.
HRESULT
__result = @this.Stat(pstatstgLocal, grfStatFlag);
Windows.Win32.System_Ole_IDispatchEx_Extensions.g.cs (8)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetDispID(bstrName, grfdex, pidLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
InvokeEx(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, winmdroot.System.Variant.VARIANT* pvarRes, winmdroot.System.Com.EXCEPINFO* pei, winmdroot.System.Com.IServiceProvider* pspCaller)
38
winmdroot.Foundation.
HRESULT
__result = @this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarRes, pei, pspCaller);
44
internal static unsafe winmdroot.Foundation.
HRESULT
GetMemberProperties(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, uint grfdexFetch, out winmdroot.System.Ole.FDEX_PROP_FLAGS pgrfdex)
48
winmdroot.Foundation.
HRESULT
__result = @this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal);
54
internal static unsafe winmdroot.Foundation.
HRESULT
GetNextDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, uint grfdex, int id, out int pid)
58
winmdroot.Foundation.
HRESULT
__result = @this.GetNextDispID(grfdex, id, pidLocal);
Windows.Win32.System_Ole_IDropTarget_Extensions.g.cs (6)
24
internal static unsafe winmdroot.Foundation.
HRESULT
DragEnter(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
28
winmdroot.Foundation.
HRESULT
__result = @this.DragEnter(pDataObj, grfKeyState, pt, pdwEffectLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
DragOver(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
38
winmdroot.Foundation.
HRESULT
__result = @this.DragOver(grfKeyState, pt, pdwEffectLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
Drop(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect)
48
winmdroot.Foundation.
HRESULT
__result = @this.Drop(pDataObj, grfKeyState, pt, pdwEffectLocal);
Windows.Win32.System_Ole_IPicture_Extensions.g.cs (22)
24
internal static unsafe winmdroot.Foundation.
HRESULT
get_Handle(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.OLE_HANDLE pHandle)
28
winmdroot.Foundation.
HRESULT
__result = @this.get_Handle(pHandleLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
get_hPal(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.OLE_HANDLE phPal)
38
winmdroot.Foundation.
HRESULT
__result = @this.get_hPal(phPalLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
get_Type(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.PICTYPE pType)
48
winmdroot.Foundation.
HRESULT
__result = @this.get_Type(pTypeLocal);
54
internal static unsafe winmdroot.Foundation.
HRESULT
get_Width(this winmdroot.System.Ole.IPicture.Interface @this, out int pWidth)
58
winmdroot.Foundation.
HRESULT
__result = @this.get_Width(pWidthLocal);
64
internal static unsafe winmdroot.Foundation.
HRESULT
get_Height(this winmdroot.System.Ole.IPicture.Interface @this, out int pHeight)
68
winmdroot.Foundation.
HRESULT
__result = @this.get_Height(pHeightLocal);
74
internal static unsafe winmdroot.Foundation.
HRESULT
Render(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, in winmdroot.Foundation.RECT pRcWBounds)
78
winmdroot.Foundation.
HRESULT
__result = @this.Render(hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBoundsLocal);
84
internal static unsafe winmdroot.Foundation.
HRESULT
get_CurDC(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.Graphics.Gdi.HDC phDC)
88
winmdroot.Foundation.
HRESULT
__result = @this.get_CurDC(phDCLocal);
94
internal static unsafe winmdroot.Foundation.
HRESULT
SelectPicture(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.Graphics.Gdi.HDC hDCIn, out winmdroot.Graphics.Gdi.HDC phDCOut, out winmdroot.System.Ole.OLE_HANDLE phBmpOut)
100
winmdroot.Foundation.
HRESULT
__result = @this.SelectPicture(hDCIn, phDCOutLocal, phBmpOutLocal);
107
internal static unsafe winmdroot.Foundation.
HRESULT
get_KeepOriginalFormat(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.Foundation.BOOL pKeep)
111
winmdroot.Foundation.
HRESULT
__result = @this.get_KeepOriginalFormat(pKeepLocal);
117
internal static unsafe winmdroot.Foundation.
HRESULT
SaveAsFile(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, out int pCbSize)
121
winmdroot.Foundation.
HRESULT
__result = @this.SaveAsFile(pStream, fSaveMemCopy, pCbSizeLocal);
127
internal static unsafe winmdroot.Foundation.
HRESULT
get_Attributes(this winmdroot.System.Ole.IPicture.Interface @this, out uint pDwAttr)
131
winmdroot.Foundation.
HRESULT
__result = @this.get_Attributes(pDwAttrLocal);
Windows.Win32.System_Ole_IRecordInfo_Extensions.g.cs (16)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetGuid(this winmdroot.System.Ole.IRecordInfo.Interface @this, out global::System.Guid pguid)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetGuid(pguidLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
GetSize(this winmdroot.System.Ole.IRecordInfo.Interface @this, out uint pcbSize)
38
winmdroot.Foundation.
HRESULT
__result = @this.GetSize(pcbSizeLocal);
44
internal static unsafe winmdroot.Foundation.
HRESULT
GetField(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField)
50
winmdroot.Foundation.
HRESULT
__result = @this.GetField(pvData, szFieldNameLocal, pvarFieldLocal);
57
internal static unsafe winmdroot.Foundation.
HRESULT
GetFieldNoCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField, out void* ppvDataCArray)
65
winmdroot.Foundation.
HRESULT
__result = @this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal);
73
internal static unsafe winmdroot.Foundation.
HRESULT
PutField(this winmdroot.System.Ole.IRecordInfo.Interface @this, uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField)
79
winmdroot.Foundation.
HRESULT
__result = @this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal);
86
internal static unsafe winmdroot.Foundation.
HRESULT
PutFieldNoCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField)
92
winmdroot.Foundation.
HRESULT
__result = @this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal);
99
internal static unsafe winmdroot.Foundation.
HRESULT
GetFieldNames(this winmdroot.System.Ole.IRecordInfo.Interface @this, ref uint pcNames, winmdroot.Foundation.BSTR* rgBstrNames)
103
winmdroot.Foundation.
HRESULT
__result = @this.GetFieldNames(pcNamesLocal, rgBstrNames);
109
internal static unsafe winmdroot.Foundation.
HRESULT
RecordCreateCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvSource, out void* ppvDest)
113
winmdroot.Foundation.
HRESULT
__result = @this.RecordCreateCopy(pvSource, ppvDestLocal);
Windows.Win32.UI_Shell_IDataObjectAsyncCapability_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
GetAsyncMode(this winmdroot.UI.Shell.IDataObjectAsyncCapability.Interface @this, out winmdroot.Foundation.BOOL pfIsOpAsync)
28
winmdroot.Foundation.
HRESULT
__result = @this.GetAsyncMode(pfIsOpAsyncLocal);
34
internal static unsafe winmdroot.Foundation.
HRESULT
InOperation(this winmdroot.UI.Shell.IDataObjectAsyncCapability.Interface @this, out winmdroot.Foundation.BOOL pfInAsyncOp)
38
winmdroot.Foundation.
HRESULT
__result = @this.InOperation(pfInAsyncOpLocal);
Windows.Win32.UI_Shell_IDragSourceHelper_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(this winmdroot.UI.Shell.IDragSourceHelper.Interface @this, in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject)
28
winmdroot.Foundation.
HRESULT
__result = @this.InitializeFromBitmap(pshdiLocal, pDataObject);
34
internal static unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(this winmdroot.UI.Shell.IDragSourceHelper.Interface @this, winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject)
37
winmdroot.Foundation.
HRESULT
__result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
Windows.Win32.UI_Shell_IDragSourceHelper2_Extensions.g.cs (4)
24
internal static unsafe winmdroot.Foundation.
HRESULT
InitializeFromBitmap(this winmdroot.UI.Shell.IDragSourceHelper2.Interface @this, in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject)
28
winmdroot.Foundation.
HRESULT
__result = @this.InitializeFromBitmap(pshdiLocal, pDataObject);
34
internal static unsafe winmdroot.Foundation.
HRESULT
InitializeFromWindow(this winmdroot.UI.Shell.IDragSourceHelper2.Interface @this, winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject)
37
winmdroot.Foundation.
HRESULT
__result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
Windows.Win32.UI_Shell_IDropTargetHelper_Extensions.g.cs (6)
24
internal static unsafe winmdroot.Foundation.
HRESULT
DragEnter(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
28
winmdroot.Foundation.
HRESULT
__result = @this.DragEnter(hwndTarget, pDataObject, pptLocal, dwEffect);
34
internal static unsafe winmdroot.Foundation.
HRESULT
DragOver(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
38
winmdroot.Foundation.
HRESULT
__result = @this.DragOver(pptLocal, dwEffect);
44
internal static unsafe winmdroot.Foundation.
HRESULT
Drop(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect)
48
winmdroot.Foundation.
HRESULT
__result = @this.Drop(pDataObject, pptLocal, dwEffect);
Windows\Win32\Foundation\GlobalBuffer.cs (5)
21
Status =
HRESULT
.E_INVALIDARG;
32
Status =
HRESULT
.E_OUTOFMEMORY;
39
Status =
HRESULT
.E_OUTOFMEMORY;
45
public
HRESULT
Status { get; private set; } =
HRESULT
.S_OK;
Windows\Win32\Foundation\HRESULT.cs (32)
45
public static
HRESULT
FromWin32(WIN32_ERROR error)
52
public static implicit operator
HRESULT
(Exception ex)
55
return (
HRESULT
)ex.HResult;
64
public static readonly
HRESULT
COR_E_ARGUMENT = (
HRESULT
)unchecked((int)0x80070057);
65
public static readonly
HRESULT
TLBX_E_LIBNOTREGISTERED = (
HRESULT
)unchecked((int)0x80131165);
66
public static readonly
HRESULT
COR_E_MISSINGFIELD = (
HRESULT
)unchecked((int)0x80131511);
67
public static readonly
HRESULT
COR_E_MISSINGMEMBER = (
HRESULT
)unchecked((int)0x80131512);
68
public static readonly
HRESULT
COR_E_MISSINGMETHOD = (
HRESULT
)unchecked((int)0x80131513);
69
public static readonly
HRESULT
COR_E_NOTSUPPORTED = (
HRESULT
)unchecked((int)0x80131515);
70
public static readonly
HRESULT
COR_E_OVERFLOW = (
HRESULT
)unchecked((int)0x80131516);
71
public static readonly
HRESULT
COR_E_INVALIDOLEVARIANTTYPE = (
HRESULT
)unchecked((int)0x80131531);
72
public static readonly
HRESULT
COR_E_SAFEARRAYTYPEMISMATCH = (
HRESULT
)unchecked((int)0x80131533);
73
public static readonly
HRESULT
COR_E_TARGETINVOCATION = (
HRESULT
)unchecked((int)0x80131604);
74
public static readonly
HRESULT
COR_E_OBJECTDISPOSED = (
HRESULT
)unchecked((int)0x80131622);
75
public static readonly
HRESULT
COR_E_SERIALIZATION = (
HRESULT
)unchecked((int)0x8013150c);
81
public static readonly
HRESULT
DESTS_E_NO_MATCHING_ASSOC_HANDLER = (
HRESULT
)unchecked((int)0x80040F03);
93
/// <see cref="FACILITY_CODE.FACILITY_CONTROL"/> is used for all VB errors raised as <see cref="
HRESULT
"/>s.
104
public static readonly
HRESULT
VB_E_NOTOBJECT = (
HRESULT
)unchecked((int)0x800A01A8);
Windows\Win32\Graphics\GdiPlus\StatusExtensions.cs (8)
24
return new ExternalException(SR.GdiplusGenericError, (int)
HRESULT
.E_FAIL);
35
return new ExternalException(SR.GdiplusInvalidOperation, (int)
HRESULT
.E_UNEXPECTED);
43
return new ExternalException(SR.GdiplusGenericError, (int)
HRESULT
.E_FAIL);
47
return new ExternalException(SR.GdiplusAborted, (int)
HRESULT
.E_ABORT);
53
return new ExternalException(SR.GdiplusAccessDenied, (int)
HRESULT
.E_ACCESSDENIED);
74
return new ExternalException(SR.GdiplusUnsupportedGdiplusVersion, (int)
HRESULT
.E_FAIL);
77
return new ExternalException(SR.GdiplusNotInitialized, (int)
HRESULT
.E_FAIL);
80
return new ExternalException($"{SR.GdiplusUnknown} [{status}]", (int)
HRESULT
.E_UNEXPECTED);
Windows\Win32\PInvokeCore.PrintDlgEx.cs (1)
11
internal static extern unsafe
HRESULT
PrintDlgEx(PRINTDLGEXW* pPD);
Windows\Win32\PInvokeCore.RegisterDragDrop.cs (2)
11
public static unsafe
HRESULT
RegisterDragDrop<T>(T hwnd, IDropTarget.Interface pDropTarget)
14
using var dropTarget = ComHelpers.TryGetComScope<IDropTarget>(pDropTarget, out
HRESULT
hr);
Windows\Win32\PInvokeCore.RevokeDragDrop.cs (2)
9
public static
HRESULT
RevokeDragDrop<T>(T hwnd) where T : IHandle<HWND>
11
HRESULT
result = RevokeDragDrop(hwnd.Handle);
Windows\Win32\System\Com\AgileComPointer.cs (5)
124
var scope = GlobalInterfaceTable.GetInterface<TInterface>(_cookie, out
HRESULT
hr);
135
var scope = TryGetInterface<TAsInterface>(out
HRESULT
hr);
143
public ComScope<TInterface> TryGetInterface(out
HRESULT
hr)
149
public ComScope<TAsInterface> TryGetInterface<TAsInterface>(out
HRESULT
hr)
192
HRESULT
hr = GlobalInterfaceTable.RevokeInterface(cookie);
Windows\Win32\System\Com\ComHelpers.cs (11)
40
internal static ComScope<T> TryGetComScope<T>(object? @object, out
HRESULT
hr) where T : unmanaged, IComIID =>
49
T* result = TryGetComPointer<T>(@object, out
HRESULT
hr);
68
using var scope = TryGetComScope<T>(@object, out
HRESULT
hr);
76
/// Typically either <see cref="
HRESULT
.S_OK"/> or <see cref="
HRESULT
.E_POINTER"/>. Check for success, not
80
internal static T* TryGetComPointer<T>(object? @object, out
HRESULT
result) where T : unmanaged, IComIID
84
result =
HRESULT
.E_POINTER;
119
result =
HRESULT
.E_NOINTERFACE;
126
result =
HRESULT
.S_OK;
188
HRESULT
hr = unknown->QueryInterface(IID.Get<ComUnknown>(), (void**)&unknown);
356
HRESULT
hr = PInvokeCore.LoadRegTypeLib(typeLibrary, majorVersion, minorVersion, 0, typelib);
Windows\Win32\System\Com\ComManagedStream.cs (30)
49
HRESULT
IStream.Interface.Clone(IStream** ppstm)
53
return
HRESULT
.E_POINTER;
60
return
HRESULT
.S_OK;
63
HRESULT
IStream.Interface.Commit(uint grfCommitFlags)
69
return
HRESULT
.S_OK;
72
HRESULT
IStream.Interface.CopyTo(IStream* pstm, ulong cb, ulong* pcbRead, ulong* pcbWritten)
76
return
HRESULT
.STG_E_INVALIDPOINTER;
112
return
HRESULT
.S_OK;
115
HRESULT
ISequentialStream.Interface.Read(void* pv, uint cb, uint* pcbRead)
119
return
HRESULT
.STG_E_INVALIDPOINTER;
130
return
HRESULT
.S_OK;
133
HRESULT
IStream.Interface.Read(void* pv, uint cb, uint* pcbRead)
136
HRESULT
IStream.Interface.Seek(long dlibMove, SeekOrigin dwOrigin, ulong* plibNewPosition)
182
return
HRESULT
.S_OK;
185
return
HRESULT
.S_OK;
188
HRESULT
IStream.Interface.SetSize(ulong libNewSize)
191
return
HRESULT
.S_OK;
194
HRESULT
IStream.Interface.Stat(STATSTG* pstatstg, uint grfStatFlag)
198
return
HRESULT
.STG_E_INVALIDPOINTER;
220
return
HRESULT
.S_OK;
224
HRESULT
IStream.Interface.LockRegion(ulong libOffset, ulong cb, uint dwLockType) =>
HRESULT
.STG_E_INVALIDFUNCTION;
227
HRESULT
IStream.Interface.Revert() =>
HRESULT
.S_OK;
230
HRESULT
IStream.Interface.UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) =>
HRESULT
.STG_E_INVALIDFUNCTION;
232
HRESULT
ISequentialStream.Interface.Write(void* pv, uint cb, uint* pcbWritten)
236
return
HRESULT
.STG_E_INVALIDPOINTER;
247
return
HRESULT
.S_OK;
250
HRESULT
IStream.Interface.Write(void* pv, uint cb, uint* pcbWritten)
Windows\Win32\System\Com\ComScope.cs (6)
60
public ComScope<TTo> TryQuery<TTo>(out
HRESULT
hr) where TTo : unmanaged, IComIID
80
public static ComScope<T> TryQueryFrom<TFrom>(TFrom* from, out
HRESULT
hr) where TFrom : unmanaged, IComIID
83
hr = from is null ?
HRESULT
.E_POINTER : ((ComUnknown*)from)->QueryInterface(IID.Get<T>(), scope);
94
HRESULT
.E_POINTER.ThrowOnFailure();
104
/// use the interface, otherwise use <see cref="TryQuery{TTo}(out
HRESULT
)"/>.
114
HRESULT
hr = AsUnknown->QueryInterface(IID.Get<TInterface>(), (void**)&unknown);
Windows\Win32\System\Com\GlobalInterfaceTable.cs (4)
39
HRESULT
hr = s_globalInterfaceTable->RegisterInterfaceInGlobal(
51
public static ComScope<TInterface> GetInterface<TInterface>(uint cookie, out
HRESULT
result)
63
public static
HRESULT
RevokeInterface(uint cookie)
65
HRESULT
hr = s_globalInterfaceTable->RevokeInterfaceFromGlobal(cookie);
Windows\Win32\System\Com\IDispatch.cs (11)
15
internal
HRESULT
TryGetProperty(
23
internal
HRESULT
TryGetProperty(
33
HRESULT
hr = dispatch->Invoke(
43
if (hr ==
HRESULT
.DISP_E_EXCEPTION)
47
hr = (
HRESULT
)pExcepInfo.scode;
92
public
HRESULT
SetPropertyValue(int dispatchId, VARIANT value, out string? errorText)
110
HRESULT
hr = Invoke(
120
if (hr ==
HRESULT
.DISP_E_EXCEPTION)
124
hr = (
HRESULT
)pExcepInfo.scode;
135
internal
HRESULT
GetIDOfName(string name, out int dispId)
141
HRESULT
result = GetIDsOfNames(IID.NULL(), (PWSTR*)&n, 1u, PInvokeCore.GetThreadLocale(), &id);
Windows\Win32\System\Com\ITypeInfo.cs (2)
9
public
HRESULT
GetIDOfName(string name, out int memberId)
15
HRESULT
result = GetIDsOfNames((PWSTR*)&n, 1, &id);
Windows\Win32\System\Com\IUnknown.cs (1)
11
internal unsafe
HRESULT
QueryInterface(Guid* riid, void** ppvObject);