public static extern int SetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex, NativeMethods.WS dwNewLong);
public static int SetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex, int dwNewLong) { return(NativeMethods.SetWindowLong(hWnd, (int)nIndex, dwNewLong)); }
public static extern NativeMethods.WS GetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex);
public static int GetWindowLong(IntPtr hWnd, NativeMethods.GWL nIndex) { return(NativeMethods.GetWindowLong(hWnd, (int)nIndex)); }