示例#1
0
 internal static extern uint GetWindowLong(IntPtr hWnd, GetWindowLong nIndex);
示例#2
0
 private static extern int User32_GetWindowLong(IntPtr hWnd, GetWindowLong nIndex);
示例#3
0
 internal static extern int SetWindowLong(IntPtr hWnd, GetWindowLong nIndex, int dwNewLong);
 public static extern uint SetWindowLong(IntPtr hWnd, GetWindowLong nIndex, uint dwNewLong);
 public static extern uint GetWindowLong(IntPtr hWnd, GetWindowLong nIndex);
示例#6
0
 public uint SetWindowLong(IntPtr hWnd, GetWindowLong nIndex, uint dwNewLong)
 {
     return StaticPInvoke.SetWindowLong(hWnd, nIndex, dwNewLong);
 }
示例#7
0
 public uint GetWindowLong(IntPtr hWnd, GetWindowLong nIndex)
 {
     return StaticPInvoke.GetWindowLong(hWnd, nIndex);
 }
示例#8
-1
 private static extern int User32_SetWindowLong(IntPtr hWnd, GetWindowLong nIndex, int dwNewLong);