(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam)
| 44 | static extern int RegisterWindowMessage(string message); |
| 45 | |
| 46 | [DllImport("user32.dll", EntryPoint = "PostMessageW")] |
| 47 | [return: MarshalAs(UnmanagedType.Bool)] |
| 48 | static extern bool PostMessage(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam); |
| 49 | } |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected