3 instantiations of HTASK
System.Windows.Forms.Primitives (3)
Windows.Win32.HTASK.g.cs (3)
41
public static explicit operator HTASK(void* value) => new
HTASK
(value);
57
public static explicit operator HTASK(IntPtr value) => new
HTASK
((void*)value.ToPointer());
59
public static explicit operator HTASK(UIntPtr value) => new
HTASK
((void*)value.ToPointer());
32 references to HTASK
System.Windows.Forms.Primitives (32)
Windows.Win32.HTASK.g.cs (13)
25
: IEquatable<
HTASK
>
35
internal static
HTASK
Null => default;
39
public static implicit operator void*(
HTASK
value) => value.Value;
41
public static explicit operator
HTASK
(void* value) => new HTASK(value);
43
public static bool operator ==(
HTASK
left,
HTASK
right) => left.Value == right.Value;
45
public static bool operator !=(
HTASK
left,
HTASK
right) => !(left == right);
47
public bool Equals(
HTASK
other) => this.Value == other.Value;
49
public override bool Equals(object obj) => obj is
HTASK
other && this.Equals(other);
55
public static implicit operator IntPtr(
HTASK
value) => new IntPtr(value.Value);
57
public static explicit operator
HTASK
(IntPtr value) => new HTASK((void*)value.ToPointer());
59
public static explicit operator
HTASK
(UIntPtr value) => new HTASK((void*)value.ToPointer());
Windows.Win32.IMessageFilter.g.cs (17)
55
/// <inheritdoc cref="HandleInComingCall(uint, winmdroot.Media.
HTASK
, uint, winmdroot.System.Com.INTERFACEINFO*)"/>
56
internal unsafe uint HandleInComingCall(uint dwCallType, winmdroot.Media.
HTASK
htaskCaller, uint dwTickCount, winmdroot.System.Com.INTERFACEINFO? lpInterfaceInfo)
66
private static uint HandleInComingCall(IMessageFilter* pThis, uint dwCallType, winmdroot.Media.
HTASK
htaskCaller, uint dwTickCount, [Optional] winmdroot.System.Com.INTERFACEINFO* lpInterfaceInfo)
94
public unsafe uint HandleInComingCall(uint dwCallType, winmdroot.Media.
HTASK
htaskCaller, uint dwTickCount, [Optional] winmdroot.System.Com.INTERFACEINFO* lpInterfaceInfo)
96
return ((delegate *unmanaged [Stdcall]<IMessageFilter*,uint ,winmdroot.Media.
HTASK
,uint ,winmdroot.System.Com.INTERFACEINFO* ,uint>)lpVtbl[3])((IMessageFilter*)Unsafe.AsPointer(ref this), dwCallType, htaskCaller, dwTickCount, lpInterfaceInfo);
102
private static uint RetryRejectedCall(IMessageFilter* pThis, winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwRejectType)
129
public uint RetryRejectedCall(winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwRejectType)
131
return ((delegate *unmanaged [Stdcall]<IMessageFilter*,winmdroot.Media.
HTASK
,uint ,uint ,uint>)lpVtbl[4])((IMessageFilter*)Unsafe.AsPointer(ref this), htaskCallee, dwTickCount, dwRejectType);
137
private static uint MessagePending(IMessageFilter* pThis, winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwPendingType)
165
public uint MessagePending(winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwPendingType)
167
return ((delegate *unmanaged [Stdcall]<IMessageFilter*,winmdroot.Media.
HTASK
,uint ,uint ,uint>)lpVtbl[5])((IMessageFilter*)Unsafe.AsPointer(ref this), htaskCallee, dwTickCount, dwPendingType);
197
internal delegate *unmanaged [Stdcall]<IMessageFilter*,uint ,winmdroot.Media.
HTASK
,uint ,winmdroot.System.Com.INTERFACEINFO* ,uint> HandleInComingCall_4;
199
internal delegate *unmanaged [Stdcall]<IMessageFilter*,winmdroot.Media.
HTASK
,uint ,uint ,uint> RetryRejectedCall_5;
201
internal delegate *unmanaged [Stdcall]<IMessageFilter*,winmdroot.Media.
HTASK
,uint ,uint ,uint> MessagePending_6;
230
unsafe uint HandleInComingCall(uint dwCallType, winmdroot.Media.
HTASK
htaskCaller, uint dwTickCount, [Optional] winmdroot.System.Com.INTERFACEINFO* lpInterfaceInfo);
233
uint RetryRejectedCall(winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwRejectType);
236
uint MessagePending(winmdroot.Media.
HTASK
htaskCallee, uint dwTickCount, uint dwPendingType);
Windows.Win32.Media_Audio_IMessageFilter_Extensions.g.cs (2)
23
/// <inheritdoc cref="winmdroot.Media.Audio.IMessageFilter.Interface.HandleInComingCall(uint, winmdroot.Media.
HTASK
, uint, winmdroot.System.Com.INTERFACEINFO*)"/>
24
internal static unsafe uint HandleInComingCall(this winmdroot.Media.Audio.IMessageFilter.Interface @this, uint dwCallType, winmdroot.Media.
HTASK
htaskCaller, uint dwTickCount, winmdroot.System.Com.INTERFACEINFO? lpInterfaceInfo)