नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'struct' : cannot export a UDT without members
Remarks
You attempted to apply the export attribute to an empty UDT (user-defined type).
Example
For example:
// C3139.cpp
#include "unknwn.h"
[emitidl];
[module(name=xx)];
[export] struct MyStruct { // C3139 empty type
};
int main(){}