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 C2086

'identifier' : redefinition

The identifier is defined more than once, or a subsequent declaration differs from a previous one. The following sample generates C2086:

int a;
char a;
main()
{
}
main()
{
  int a;
  int a;
}

// The following example is an error in C++, but not in ANSI C:

int a;
int a;
main()
{
}