नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'specifier' : illegal linkage specification
Remarks
The linkage specifier is not supported. Only the "C" and "C++" linkage specifiers are supported.
Example
The following example generates C2537:
// C2537.cpp
// compile with: /c
extern "c" void func1(); // C2537
extern "C" void func2(); // OK
extern "C++" void func3(); // OK