3 instantiations of PICTDESC
System.Private.Windows.GdiPlus (3)
System\Drawing\IIconExtensions.cs (1)
14PICTDESC desc = new()
Windows\Win32\Graphics\GdiPlus\GpBitmapExtensions.cs (1)
56PICTDESC desc = new()
Windows\Win32\Graphics\GdiPlus\GpMetafileExtensions.cs (1)
23PICTDESC desc = new()
20 references to PICTDESC
System.Private.Windows.Core (4)
Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (4)
64 /// <inheritdoc cref="OleCreatePictureIndirect(winmdroot.System.Ole.PICTDESC*, global::System.Guid*, winmdroot.Foundation.BOOL, void**)"/> 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) 72 fixed (winmdroot.System.Ole.PICTDESC* lpPictDescLocal = &lpPictDesc) 93 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePictureIndirect(winmdroot.System.Ole.PICTDESC* lpPictDesc, global::System.Guid* riid, winmdroot.Foundation.BOOL fOwn, void** lplpvObj);
System.Private.Windows.GdiPlus (15)
System\Drawing\IIconExtensions.cs (3)
12internal static unsafe PICTDESC CreatePICTDESC(this IIcon icon, bool copy) 14PICTDESC desc = new() 42PICTDESC desc = icon.CreatePICTDESC(copy);
Windows\Win32\Graphics\GdiPlus\GpBitmapExtensions.cs (3)
52/// Creates a <see cref="PICTDESC"/> structure from the specified <see cref="GpBitmap"/>. 54public static PICTDESC CreatePICTDESC(this IPointer<GpBitmap> bitmap, HPALETTE paletteHandle = default) 56PICTDESC desc = new()
Windows\Win32\Graphics\GdiPlus\GpImageExtensions.cs (4)
34/// Create a <see cref="PICTDESC"/> struct describing the given <paramref name="image"/>. 37public static PICTDESC CreatePICTDESC(this IPointer<GpImage> image) => image switch 53PICTDESC desc = image.CreatePICTDESC(); 68PICTDESC desc = image.CreatePICTDESC();
Windows\Win32\Graphics\GdiPlus\GpMetafileExtensions.cs (3)
19/// Creates a <see cref="PICTDESC"/> structure from the specified <see cref="GpMetafile"/>. 21public static PICTDESC CreatePICTDESC(this IPointer<GpMetafile> metafile) 23PICTDESC desc = new()
Windows\Win32\System\Ole\IPicture.cs (2)
21PICTDESC desc = image.CreatePICTDESC(); 36PICTDESC desc = icon.CreatePICTDESC(copy);
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PictureConverter.cs (1)
104PICTDESC pictdesc;