G
Guest
How can a member of an enum type, like
typedef enum tagMPEG4Mode
{
None = 0,
Divx = 1,
Microsoft = 2,
} MPEG4Mode;
collide with a namespace, like Microsoft ? These are both third party
libraries - how can I solve the name collission?
typedef enum tagMPEG4Mode
{
None = 0,
Divx = 1,
Microsoft = 2,
} MPEG4Mode;
collide with a namespace, like Microsoft ? These are both third party
libraries - how can I solve the name collission?