4
votes
Why does my Service crash at DebugBreak() on Vista?
It is crashing because it is a breakpoint exception.
To be on the safe side you need to either check if a debugger is attached:
if(::IsDebuggerPresent()) ::DebugBreak();
…
0
votes
Use of GetGuiResources
On google code, there's a GDI/USER tracking library that can help you track handle usage. It is not user-friendly - rather quickly put …
0
votes
WSACleanUp causes an exception
I'd be interested to know what you'd find if you used the wt
"trace and watch data" command in windows debugger:
Set a break point at the beginning of the WSACleanup:
bp ws2_32! …
