(IntPtr hWnd, int nIndex, int dwNewLong)
| 29 | public static readonly int WM_SHOWME = RegisterWindowMessage(Program.Name); |
| 30 | |
| 31 | [DllImport("user32.dll", EntryPoint = "SetWindowLong")] |
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected