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 C2191

second parameter list longer than first

A C function was declared a second time with a longer parameter list. C does not support overloaded functions.

The following sample generates C2191:

// compile with /Za
void func( int );
void func( int, float ); // error, different parameter list