Always remain updated about current software development trends

Articles having tag: C++

Basics of Signing and Verifying code

How to sign code with digital signatures and associating them with files

FxEngine Plug-in to Simulate Logic Gates

This article shows how to build plug-ins to simulate logic gates with the FxEngine framework.

Pitfalls when using COleDataSource for clipboard and Drag & Drop operations

Information about COleDataSource not contained in the Microsoft documentation or hardly to be found.

Ways of distributing n objects in m boxes

It takes m and n as inputs from the user and prints the number of ways of distributing n objects in m boxes.

Fast SIMD Prototyping

Prototype SIMD vectorized code effortlessly

Texture Atlas Maker

A utility to create texture atlases for 2D OpenGL games

Creating and Using Mutex Objects

This article shows the use of mutex's with explanations (Copied from MSDN - may prove convenient for some)

Swap Two Numbers without using Temp Variable

You can do it with some XORs:int a = 25, b = 7;a = a ^ b;b = b ^ a;a = a ^ b;Or the same thing with some shorthand to make the code even harder to read:a ^= b;b ^= a;a ^= b;

C++ Classes to Read and Write Bit Stream

Bit stream on file with random access capability