SetForegroundWindow function Null safety user32
- int hWnd
Brings the thread that created the specified window into the foreground and activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user. The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.
BOOL SetForegroundWindow(
HWND hWnd
);
Implementation
int SetForegroundWindow(int hWnd) {
final _SetForegroundWindow = _user32.lookupFunction<
Int32 Function(IntPtr hWnd),
int Function(int hWnd)>('SetForegroundWindow');
return _SetForegroundWindow(hWnd);
}