◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2191 second parameter list longer than first The function was declared a second time with a longer parameter list. C does not support overloaded functions. The following is an example of this error: void func( int ); void func( int, float ); // error, different parameter list -♦-