3
votes
On Win32 how do you move a thread to another cpu core?
If you could call a function that returns a number indicating what CPU the thread is running on, without using affinity, the answer would often be wrong as soon as the function returned. So checkin …
3
votes
How does _ftime / Windows internal time work?
Regarding how _ftime() works:
If you have Microsoft Visual C++ installed, you probably have the C runtime source installed as well. _ftime() is defined in %P …
8
votes
How to build a C++ Dll wrapper that catches all exceptions?
The only way to make a rock solid DLL wrapper is to load the buggy DLL in another process, so that if it crashes it doesn't take your primary process down with it.
Catching all C++ excepti …
1
vote
(Windows) Monitoring API calls in C
The Debugging Tools for Windows package includes a debugger extension called …
2
votes
What happens when GetTickCount() wraps?
If you want to test what happens when GetTickCount() wraps, you could enable Application Verifier's TimeRollOver test.
From …
1
vote
“Correct” way to send a sequence of UDP datagrams?
If you pass the WSA_FLAG_OVERLAPPED flag to WSASocket(), you can call WSARecvFrom() multiple times in order to queue up multiple receive I/O requests. That wa …
1
vote
I can’t build a library that needs WOW64 Api
If your application needs to work on Windows XP 32-bit or Windows 2000, you should use LoadLibrary() and GetProcAddress() as Canopus suggested, because Wow64DisableW …
4
votes
How to make OpenGL apps in 64-bits windows
The 64-bit OpenGL import library is included in the Windows SDK and gets installed to %ProgramFiles%\Microso …
0
votes
How to print the error message of GetLastError() in a textual form?
MSDN has some sample code that demonstrates how to use FormatMessage() and GetLastError() together: …
