1
vote
How can I report to users what is consuming the process address space of a windows application while they’re running it?
You can also find out information about the heaps in a process with Heap32ListFirst/Heap32ListNext, and about loaded modules with Module32First/Module32Next, from the Tool Help API.
'Tool H …
2
votes
Heisenbug: WinApi program crashes on some computers
"4) Writing a log shows that the crash happens on a declaration of a local int variable! How could that be? Memory corruption?"
This could be a sign that the hardware is in fact faulty or b …
3
votes
Available space left on drive - WinAPI - Windows CE
GetDiskFreeSpaceEx. That links to pinvoke.net's desktop page; simply replace kernel32 …
1
vote
Why would the Win32 OleGetClipboard() function return CLIPBRD_E_CANT_OPEN?
The documentation says that OleGetClipboard can fail with this error code if OpenClipboard fails. In turn, if you read that documentation, it says:
"OpenCl …
0
votes
Side effects of calling RegisterWindow multiple times with same window class?
Well, you might be able to avoid a call down into the kernel - RegisterClass seems to need to get down there - but window classes are per-process and per-module, so you shouldn't hurt anything by r …
3
votes
How to launch a Windows process as 64-bit from 32-bit code?
Whether a 32-bit or 64-bit native (unmanaged) program is run depends solely on the executable. There are two copies of reg.exe, in C:\Windows\System32 (64-bit) and C:\Windows\SysWOW64 …
