SetClassLongPtr32() приватный Метод

private SetClassLongPtr32 ( IntPtr hWnd, GCLP nIndex, int dwNewLong ) : int
hWnd System.IntPtr
nIndex GCLP
dwNewLong int
Результат int
Пример #1
0
 public static IntPtr SetClassLongPtr(IntPtr hwnd, GCLP nIndex, IntPtr dwNewLong)
 {
     if (8 == IntPtr.Size)
     {
         return(NativeMethods.SetClassLongPtr64(hwnd, nIndex, dwNewLong));
     }
     return(new IntPtr(NativeMethods.SetClassLongPtr32(hwnd, nIndex, dwNewLong.ToInt32())));
 }