Example #1
0
 public static IntPtr GetClassLongPtr(IntPtr hWnd, GCLPIndex nIndex)
 {
     if (IntPtr.Size > 4)
     {
         return(GetClassLongPtr64(hWnd, nIndex));
     }
     else
     {
         return(new IntPtr(GetClassLongPtr32(hWnd, nIndex)));
     }
 }
Example #2
0
 public static extern IntPtr GetClassLongPtr64(IntPtr hWnd, GCLPIndex nIndex);
Example #3
0
 public static extern uint GetClassLongPtr32(IntPtr hWnd, GCLPIndex nIndex);