(IntPtr hWnd, StringBuilder lpString, int nMaxCount)
| 24 | static extern int GetWindowTextLength(IntPtr hWnd); |
| 25 | |
| 26 | [DllImport("user32.dll")] |
| 27 | static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount); |
| 28 | |
| 29 | [DllImport("user32.dll")] |
| 30 | static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam); |
nothing calls this directly
no outgoing calls
no test coverage detected