I am trying to inherit from and extend a structure defined in MIDL. I used the same syntax as for interface inheritance i.e
typedef struct stDBIBinVarDataEx
{
float x;
} MYSTRUCT ;
struct struct2 : MYSTRUCT
{
float y;
};
but the compiler generates errors.