Пример #1
0
 public static unsafe bool GetTitleBarInfo(IntPtr hwnd, ref TitleBarInfo pti)
 {
     if (pti.Size == 0)
     {
         pti.Size = (uint)Marshal.SizeOf <TitleBarInfo>();
         fixed(TitleBarInfo *ptr = &pti) return(User32Methods.GetTitleBarInfo(hwnd, new IntPtr(ptr)));
 }