Search Results

2
votes

Static libraries with managed code issue

My hunch was that, as you suspected, unmanaged DLLs are loaded in the context of the process and not in the context of the AppDomain, so any static data in unmanaged code is shared among AppDomains …
2
votes

TinyXML: Save document to char * or string

I'm not familiar with TinyXML, but from the documentation it seems that by using operator << to a C++ stream (so you can use …
0
votes

Why would waveOutWrite() cause an exception in the debug heap?

I have no idea about waveOutXXX stuff, but in your code I see something strange - you allocate the memory that you put in hdr->lpData using malloc() but fom your analysis it appears that you are ex …
4
votes

Where can I learn more about C++0x?

Here are two videos on the subject. They are a bit old, but still very relevant: New Features in the Next C++ Standard ( http://w …