หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
second parameter list longer than first
Remarks
A C function was declared a second time with a longer parameter list. C does not support overloaded functions.
Example
The following example generates C2191:
// C2191.c
// compile with: /Za /c
void func( int );
void func( int, float ); // C2191 different parameter list
void func2( int, float ); // OK