إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'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