Quote:
Originally Posted by Dyndrilliac
Actually, it's a byte pointer (a pointer to a byte).
|
No, I don't think it is.
Blizzard most likely did it like this:
Code:
typedef struct tStructure {
// Members
} STRUCTURE, *PSTRUCTURE;
PSTRUCTURE g_pStructure = ( PSTRUCTURE )malloc( sizeof( STRUCTURE ));