SetClassLongPtr64() private method

private SetClassLongPtr64 ( IntPtr hWnd, GCLP nIndex, IntPtr dwNewLong ) : IntPtr
hWnd System.IntPtr
nIndex GCLP
dwNewLong System.IntPtr
return System.IntPtr
示例#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())));
 }