नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
#import attribute 'attribute' requires count arguments; ignored
Remarks
A #import attribute has the wrong number of arguments.
Example
The following example generates C4186:
// C4186.cpp
// compile with: /W1 /c
#import "stdole2.tlb" no_namespace("abc") rename("a","b","c") // C4186
The no_namespace attribute takes no arguments. The rename attribute takes only two arguments.