(IntPtr hWnd, int nIndex)
| 13 | } |
| 14 | |
| 15 | public static IntPtr GetWindowLongPtr(IntPtr hWnd, int nIndex) |
| 16 | { |
| 17 | return IntPtr.Size == 8 |
| 18 | ? GetWindowLongPtr64(hWnd, nIndex) |
| 19 | : GetWindowLongPtr32(hWnd, nIndex); |
| 20 | } |
| 21 | |
| 22 | public static void SetFocusToPreviousInstance() |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected