sizeof

The sizeof operator yeilds the number of bytes required to store an object of the type of its operand. (more…)

Typedef, struct union

Typedef Union For Different Definitions Of The Same Memory Locations


typedef union _SYSTEM_CONFIGURATION_TYPEDEF
{
    DWORD dw[25];
    WORD w[50];
    BYTE b[100];
} SYSTEM_CONFIGURATION_TYPEDEF;

 (more...)