예제 #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));
 }