2
votes
C++ Exception code lookup
A true C++ exception thrown from Microsoft's runtime will have an SEH code of 0xe06d7363 (E0 + 'msc'). You have some other exception.
.NET generates SEH exceptions with the code 0xe0434f4d …
0
votes
Define an interface in C++ that needs to be implemented in C# and C++
The other approach is to use a 'flat', C-style API. You might as well use extern "C" to prevent accidental overloading. Use a DEF file to explicitly name the exported functions, so the …
5
votes
How do you efficiently copy BSTR to wchar_t[] ?
There is never any need for conversion. A BSTR pointer points to the first character of the string and it is null-terminated. The length is stored before the first character in memory. …
5
votes
Capturing cout in Visual Studio 2005 output window?
You can't do this.
If you want to output to the debugger's output window, call OutputDebugString.
I found …
6
votes
Files on XP: Is turning off “last access time” safe?
From SetFileTime's documentation:
"NTFS delays updates to the last access time for a file by up to …
0
votes
Passing EXE data down to one or more DLLs
You could either:
put everything bar the very outermost shell into a 'common' DLL;
use a DEF file to generate export functions from your EXE.
The second is ver …
1
vote
How to wrap an existing memory buffer as a DC for GDI
Use CreateDIBitmap rather than CreateDIBSection.
…
1
vote
socket listen backlog parameter, how to determine this value?
There's a very long answer to this in the Winsock Programmer's FAQ. It details the standard setting, and the dynamic …
2
votes
C99 stdint.h header and MS Visual Studio
Microsoft do not support C99 and haven't announced any plans to. I believe they intend to track C++ standards but consider C as effectively obsolete except as a subset of C++.
New projects …
5
votes
How to disable #pragma warnings?
Perhaps see GCC Diagnostic Pragmas? Alternatively in this case you could use the …
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 …
8
votes
How Do You Write Code That Is Safe for UTF-8?
Just be 8-bit clean, for the most part. However, you will have to be aware that any non-ASCII character splits across multiple bytes, so you must take account of this if line-breaking or truncating …
1
vote
Track Data Execution Prevention (DEP) problem.
The DEP dialog will typically only show when you try to execute code from a region that you're not marking as executable. This might be caused by 'thunks' in a library you're using, e.g. ATL window …
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 …
4
votes
How much memory do Enums take?
bool might be implemented as a single byte, but typically in a structure it would be surrounded by other elements that have alignment requirements that would mean that the boolean woul …
