หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : redefinition; different type modifiers
Remarks
The identifier is already defined with a different type modifier.
Example
The following example generates C2373:
// C2373.h
void __clrcall func( void );
const int i = 20;
And then:
// C2373.cpp
// compile with: /c
#include "C2373.h"
extern void __cdecl func( void ); // C2373
extern void __clrcall func( void ); // OK
extern int i; // C2373
extern const int i; // OK