नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'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