2
votes
How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library?
In case the Joseph's suggestion does not give you enough flexibility, have a look at the Console API: http://msdn.microsoft …
0
votes
Unit testing for C++ code - Tools and methodology
Have a look at cfix (http://www.cfix-testing.org), it's specialized for Windows C/C++ development and supports both user mode and kernel mod …
0
votes
Seeking suggestions for Unit Testing C++ app spread over several dlls
In general, thoroughly testing the public interface of a DLL should be sufficient and, as Pete indicated, should indeed exercise all code paths.
Regarding Neils' answer, choosing a test fra …
1
vote
Diagnosing an app that fails to halt
The finalizer thread is idle and is waiting for work -- its trace looks fine. Theread 0 also looks fine and is idle -- it waits for the next UI message.
Can you give some details on how yo …
1
vote
Can I stop COM from swallowing uncaught C++ exceptions in the callee process?
Have a look at Vectored Exception Handlers -- depending on your exact use case, VEH could be used to in …
0
votes
COM event with binary data in arguments
You basically have two options: use a SAFEARRAY of BYTEs or stuff the data into a BSTR. The latter, although ugly, used to be the default hack to pass binary data to VB6 components. Althou …
1
vote
C/C++ testing framework (like JUnit for java)
Shameless plug: If you target Windows and are using Visual Studio, check out cfix and …
0
votes
1
vote
How do I create a 64-bit native ATL C++ DLL in Visual Studio 2003?
Have a look at VSItanium . From the description:
The VSItanium plugin for Visual Studio .NET 2003 allo …
