> want to call NtRegisterClassExWOW
> want to call NtUserCreateWindowEx
> opens user32.dll
> opens win32u.dll
mfw
> want to call NtRegisterClassExWOW
> want to call NtUserCreateWindowEx
> opens user32.dll
> opens win32u.dll
mfw
www.winehq.org/news/2026061...
www.winehq.org/news/2026061...
PowerShell to find out when a computer was last shutdown cleanly and why. Example is from AVD auto shutdown
get-winevent -FilterHashtable @{ ProviderName = 'user32' ; id =1074 } -MaxEvents 1|ft -wrap
PowerShell to find out when a computer was last shutdown cleanly and why. Example is from AVD auto shutdown
get-winevent -FilterHashtable @{ ProviderName = 'user32' ; id =1074 } -MaxEvents 1|ft -wrap
alternativeto.net/news/2026/6...
alternativeto.net/news/2026/6...
HELLO!
The OS is booted to RunLevel 3 (CLIENTCORE).
Services are STARTED at this run level.
All OneCore compliant apps can run.
GUI apps (that depend on user32 and gdi only) can run.
..
'njoy.
HELLO!
The OS is booted to RunLevel 3 (CLIENTCORE).
Services are STARTED at this run level.
All OneCore compliant apps can run.
GUI apps (that depend on user32 and gdi only) can run.
..
'njoy.
The docs (learn.microsoft.com/en-us/window...) call this cursor IDC_APPSTARTING.
I first set a breakpoint on user32!SetCursor looking at every caller, and what was being passed to it.
The docs (learn.microsoft.com/en-us/window...) call this cursor IDC_APPSTARTING.
I first set a breakpoint on user32!SetCursor looking at every caller, and what was being passed to it.
Source: raphlinus.github.io/rust/gui/202...
Source: raphlinus.github.io/rust/gui/202...
From what I've looked into, though, it seems I might be able to do this with learn.microsoft.com/en-us/window... and avoid hardcoding a path to user32.
From what I've looked into, though, it seems I might be able to do this with learn.microsoft.com/en-us/window... and avoid hardcoding a path to user32.
I know a call to User32.dll,SystemParametersInfoA() is made, but not which params...
I know a call to User32.dll,SystemParametersInfoA() is made, but not which params...
I’m a Registry kinda guy for Windows apps, though. I will likely take some of your ideas and make a lib! Maybe even put it out on GitHub.
I have a nice WinUtils lib too for Native Window Operations (the low level stuff in user32.all like SendMessage).
I’m a Registry kinda guy for Windows apps, though. I will likely take some of your ideas and make a lib! Maybe even put it out on GitHub.
I have a nice WinUtils lib too for Native Window Operations (the low level stuff in user32.all like SendMessage).