I am trying to use a Delphi component and the callback function needs to be implemented as a
typedef System::DelphiInterface<TButtonCallBack> _di_TButtonCallBack;
which is defined in the C++ header file as:
__interface TButtonCallBack : public System::IInterface
{
virtual void __fastcall Invoke(TConfirmButton ConfirmButton) = 0;
};
How do I implement the above Delphi interface in C++Builder?