नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier': symbol is already defined: attributes ignored
Remarks
A forward declaration was found but an attributed construct with the same name already exists. The attributes for the forward declaration are ignored.
Example
The following example generates C4926:
// C4926.cpp
// compile with: /W1
[module(name="MyLib")];
[coclass]
struct a {
};
[coclass]
struct a; // C4926
int main() {
}