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