Explore >> Select a destination


You are here

cppstories.com
| | www.cppstories.com
0.5 parsecs away

Travel
| | Let's say we have the following code: LegacyList* pMyList = new LegacyList(); ... pMyList->ReleaseElements(); delete pMyList; In order to fully delete an object we need to do some additional action. How to make it more C++11? How to use unique_ptr or shared_ptr here? Intro We all know that smart pointers are really nice things and we should be using them instead of raw new and delete.
| | modexp.wordpress.com
7.8 parsecs away

Travel
| | Introduction Quick post about Windows System calls that I forgot about working on after the release of Dumpert by Cn33liz last year, which is described in this post. Typically, EDR and AV set hooks on Win32 API or NT wrapper functions to detect and mitigate against malicious activity. Dumpert attempts to bypass any user-level hooks...
| | blog.httrack.com
5.7 parsecs away

Travel
| | Creating deletable and movable files on Windows 05 October 2013 Yo...
| | www.codeproject.com
27.6 parsecs away

Travel
| A implementation of a delegate library which can work faster than "the Fastest Possible C++ Delegates" and is completely compatible with the C++ Standard.