BringWindowToTop function Null safety user32
- int hWnd
Brings the specified window to the top of the Z order. If the window is a top-level window, it is activated. If the window is a child window, the top-level parent window associated with the child window is activated.
BOOL BringWindowToTop(
HWND hWnd
);
Implementation
int BringWindowToTop(int hWnd) {
final _BringWindowToTop = _user32.lookupFunction<Int32 Function(IntPtr hWnd),
int Function(int hWnd)>('BringWindowToTop');
return _BringWindowToTop(hWnd);
}