Hi Community, The following article is about one of the subjects I’m most passionate about that’s integration of disparate systems and cross-platform computing. I think, it’s something I had to publish and it’s one of the core components of my SIF project (Service Integration Framework). This approach can be applied to a variety of scenarios, […]
Beware of where you call _CrtDumpMemoryLeaks
The Visual C++ compiler has a myriad of great features to build robust and high-quality software. A good example of this could be _CrtDumpMemoryLeaks function that allows to detect any memory leaks that has occurred in the debug heap. There is an entire section on debugging native code here. The results produced by the function […]
Easy and convenient way to convert Wide Characters to Multibyte with modern C++
One of the most common tasks we developers have to do comes in the form of data conversion. A good example would be converting void* (equivalent of Object in .NET) to a specific pointer of a different class through reinterpret_cast, this is however one example. Today’s post is about converting strings as Wide Characters to […]