Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'struct' : cannot export a UDT without members
You attempted to apply the export attribute to an empty UDT (user-defined type). For example:
// C3139.cpp
#include "unknwn.h"
[emitidl];
[module(name=xx)];
[export] struct MyStruct { // C3139 empty type
};
int main(){}