(string message)
| 41 | private static extern IntPtr GetWindowLongPtr64(IntPtr hWnd, int nIndex); |
| 42 | |
| 43 | [DllImport("user32.dll", EntryPoint = "RegisterWindowMessageW", CharSet = CharSet.Unicode)] |
| 44 | static extern int RegisterWindowMessage(string message); |
| 45 | |
| 46 | [DllImport("user32.dll", EntryPoint = "PostMessageW")] |
| 47 | [return: MarshalAs(UnmanagedType.Bool)] |
nothing calls this directly
no outgoing calls
no test coverage detected