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 C2100

illegal indirection

Indirection operator ( * ) is applied to a nonpointer value. The following sample generates C2100:

void main() {
   int r = 0, *s = 0;
   *r = 200;   // C2100
   // try 
   // *s = 200;
}