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 C2230

'operator' : indirection to different types

The operator is used with pointer expressions that have different base types, without conversion. (Warning in ANSI C; error in C++.)

Example

struct ts1 *s1;
struct ts2 *s2;
s2 = s1;   // error