Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
parameter 'number' declaration different
Remarks
A C function was declared a second time with a different parameter list. C does not support overloaded functions.
Example
The following example generates C2192:
// C2192.c
// compile with: /Za /c
void func( float, int );
void func( int, float ); // C2192, different parameter list
void func2( int, float ); // OK