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