2 instantiations of PICTDESC
System.Windows.Forms (2)
winforms\Managed\System\WinForms\NativeMethods.cs (2)
3537PICTDESC pictdesc = new PICTDESC(); 3547PICTDESC pictdesc = new PICTDESC();
8 references to PICTDESC
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PictureConverter.cs (3)
112NativeMethods.PICTDESC pictdesc = null; 116pictdesc = NativeMethods.PICTDESC.CreateIconPICTDESC(((Icon)lastManaged).Handle); 119pictdesc = NativeMethods.PICTDESC.CreateBitmapPICTDESC(((Bitmap)lastManaged).GetHbitmap(), lastPalette);
winforms\Managed\System\WinForms\NativeMethods.cs (4)
3536public static PICTDESC CreateBitmapPICTDESC(IntPtr hbitmap, IntPtr hpal) { 3537PICTDESC pictdesc = new PICTDESC(); 3546public static PICTDESC CreateIconPICTDESC(IntPtr hicon) { 3547PICTDESC pictdesc = new PICTDESC();
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (1)
356public static extern UnsafeNativeMethods.IPicture OleCreatePictureIndirect(NativeMethods.PICTDESC pictdesc, [In]ref Guid refiid, bool fOwn);