11 references to GLOBAL_ALLOC_FLAGS
Microsoft.Private.Windows.Core (11)
System\IO\StreamExtensions.cs (1)
48hglobal = PInvokeCore.GlobalAlloc(GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE, (uint)size);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (2)
83pmedium->hGlobal = PInvokeCore.GlobalAlloc(GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE | GLOBAL_ALLOC_FLAGS.GMEM_ZEROINIT, 1);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (2)
455hglobal = PInvokeCore.GlobalAlloc(GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE | GLOBAL_ALLOC_FLAGS.GMEM_ZEROINIT, (uint)sstg.cbSize);
System\Private\Windows\Ole\DragDropFormat.cs (2)
72GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE | GLOBAL_ALLOC_FLAGS.GMEM_ZEROINIT);
System\Private\Windows\Ole\DragDropHelper.cs (1)
10using static Windows.Win32.System.Memory.GLOBAL_ALLOC_FLAGS;
Windows.Win32.PInvokeCore.KERNEL32.dll.g.cs (1)
95 internal static extern winmdroot.Foundation.HGLOBAL GlobalAlloc(winmdroot.System.Memory.GLOBAL_ALLOC_FLAGS uFlags, nuint dwBytes);
Windows.Win32.PInvokeCore.OLE32.dll.g.cs (1)
111 internal static extern winmdroot.Foundation.HANDLE OleDuplicateData(winmdroot.Foundation.HANDLE hSrc, winmdroot.System.Ole.CLIPBOARD_FORMAT cfFormat, winmdroot.System.Memory.GLOBAL_ALLOC_FLAGS uiFlags);
Windows\Win32\Foundation\GlobalBuffer.cs (1)
28(uint)GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE);