1 instantiation of OLE_HANDLE
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComponentModel\Com2Interop\COM2PictureConverterTests.cs (1)
50*pHandle = new((uint)(int)_handle);
25 references to OLE_HANDLE
System.Private.Windows.Core (5)
Windows\Win32\System\Ole\OLE_HANDLE.cs (5)
10public static explicit operator HICON(OLE_HANDLE handle) => new((int)handle.Value); 11public static explicit operator HBITMAP(OLE_HANDLE handle) => new((int)handle.Value); 12public static explicit operator HPALETTE(OLE_HANDLE handle) => new((int)handle.Value); 13public static explicit operator HMETAFILE(OLE_HANDLE handle) => new((int)handle.Value); 14public static explicit operator HENHMETAFILE(OLE_HANDLE handle) => new((int)handle.Value);
System.Windows.Forms (3)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PictureConverter.cs (2)
19private OLE_HANDLE _lastNativeHandle; 49picture.Value->get_Handle(out OLE_HANDLE handle).ThrowOnFailure();
System\Windows\Forms\Input\Cursor.cs (1)
417picture.Value->get_Handle(out OLE_HANDLE oleHandle);
System.Windows.Forms.Primitives (8)
System\Drawing\ImageExtensions.cs (8)
18OLE_HANDLE handle, 20OLE_HANDLE paletteHandle, 61OLE_HANDLE paletteHandle = default; 70paletteHandle = (OLE_HANDLE)variant.data.uintVal; 74OLE_HANDLE handle = (OLE_HANDLE)variant.data.uintVal; 87OLE_HANDLE paletteHandle = default; 95picture->get_Handle(out OLE_HANDLE handle).ThrowOnFailure();
System.Windows.Forms.Tests (9)
System\Windows\Forms\AxHostTests.cs (4)
1589iPicture.get_Handle(out OLE_HANDLE handle).ThrowOnFailure(); 1674iPicture.get_Handle(out OLE_HANDLE handle).ThrowOnFailure(); 1675iPicture.get_hPal(out OLE_HANDLE hPal).ThrowOnFailure(); 1703iPicture.get_Handle(out OLE_HANDLE handle).ThrowOnFailure();
System\Windows\Forms\ComponentModel\Com2Interop\COM2PictureConverterTests.cs (5)
43public override unsafe HRESULT get_Handle(OLE_HANDLE* pHandle) 193public virtual HRESULT get_Handle(OLE_HANDLE* pHandle) => HRESULT.S_OK; 201public HRESULT get_hPal(OLE_HANDLE* phPal) => HRESULT.S_OK; 203public HRESULT set_hPal(OLE_HANDLE hPal) => HRESULT.S_OK; 204public HRESULT SelectPicture(HDC hDCIn, HDC* phDCOut, OLE_HANDLE* phBmpOut) => HRESULT.S_OK;