NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2119

typedef types both define indirection

Two typedef types declare an item, and both typedef types have indirection.

The following sample generates C2119:

typedef int *p_int;
typedef short *p_short;
p_short p_int p;        // error