RAD Studio
ContentsIndex
PreviousUpNext
E2007: Dispid only allowed in __automated sections (C++)

The definition of dispids is only permitted in __automated sections. 

 

struct__declspec(delphiclass) clxclass
{
int __fastcall foo1(void) __dispid(42);// Error
__automated:
int __fastcall foo2(void) __dispid(43);// OK
};
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!