SetClassLongPtr64() private méthode

private SetClassLongPtr64 ( IntPtr hWnd, GCLP nIndex, IntPtr dwNewLong ) : IntPtr
hWnd System.IntPtr
nIndex GCLP
dwNewLong System.IntPtr
Résultat System.IntPtr
Exemple #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())));
 }