(IntPtr hWnd, int nIndex, IntPtr dwNewLong)
| 32 | static extern int SetWindowLong32(IntPtr hWnd, int nIndex, int dwNewLong); |
| 33 | |
| 34 | [DllImport("user32.dll", EntryPoint = "SetWindowLongPtr")] |
| 35 | static extern IntPtr SetWindowLongPtr64(IntPtr hWnd, int nIndex, IntPtr dwNewLong); |
| 36 | |
| 37 | [DllImport("user32.dll", EntryPoint = "GetWindowLong")] |
| 38 | private static extern IntPtr GetWindowLongPtr32(IntPtr hWnd, int nIndex); |
nothing calls this directly
no outgoing calls
no test coverage detected