หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'function' : redefinition; different linkage
Remarks
The function is already declared with a different linkage specifier.
Example
The following example generates C2375:
// C2375.cpp
// compile with: /Za /c
extern void func( void );
static void func( void ); // C2375
static void func2( void ); // OK