示例#1
0
文件: Win32API.cs 项目: kazu3516/Kucl
 public static int SetWindowLong(IntPtr hWnd, WindowLongIndex nIndex, int newValue)
 {
     return(Win32API.SetWindowLong(hWnd, (short)nIndex, newValue));
 }
示例#2
0
文件: Win32API.cs 项目: kazu3516/Kucl
 public static IntPtr SendMessage(IntPtr hWnd, WindowsMessage Msg, IntPtr wParam, IntPtr lParam)
 {
     return(Win32API.SendMessage(hWnd, (uint)Msg, wParam, lParam));
 }
示例#3
0
文件: Win32API.cs 项目: kazu3516/Kucl
 public static int GetWindowLong(IntPtr hWnd, WindowLongIndex nIndex)
 {
     return(Win32API.GetWindowLong(hWnd, (short)nIndex));
 }