Error del compilador C3139
"struct": no se puede exportar un tipo definido por el usuario sin miembros
Intentó aplicar el atributo export a un tipo definido por el usuario vacío. Por ejemplo:
// C3139.cpp
#include "unknwn.h"
[emitidl];
[module(name=xx)];
[export] struct MyStruct { // C3139 empty type
};
int main(){}