Esempio n. 1
0
 public static extern int SetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex, NativeMethods.WS dwNewLong);
Esempio n. 2
0
 public static int SetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex, int dwNewLong)
 {
     return(NativeMethods.SetWindowLong(hWnd, (int)nIndex, dwNewLong));
 }
Esempio n. 3
0
 public static extern NativeMethods.WS GetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex);
Esempio n. 4
0
 public static int GetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex)
 {
     return(NativeMethods.GetWindowLong(hWnd, (int)nIndex));
 }