#ifndef _NTUSER_H
FORCEINLINE
BOOL
NTAPI
NtUserBringWindowToTop(
_In_ HWND WindowHandle
)
{
return NtUserSetWindowPos(
WindowHandle,
NULL,
0, 0, 0, 0,
3
);
}
View code on GitHubNo description available.