Files
common/Global/CommonV8Handler.h
2026-06-12 23:18:12 +08:00

25 lines
645 B
C++

//---------------------------------------------------------------------------
#ifndef CommonV8HandlerH
#define CommonV8HandlerH
#include "CEF4DelphiVCLRTL.hpp"
//---------------------------------------------------------------------------
class TV8Handler : public TCefv8HandlerOwn
{
protected:
virtual bool __fastcall Execute(const ustring name, const _di_ICefv8Value obj,
const TCefv8ValueArray arguments, _di_ICefv8Value &retval, ustring &exception);
};
class TWebKitInitializeEvent : public TCppInterfacedObject<TOnWebKitInitializedEvent>
{
public:
INTFOBJECT_IMPL_IUNKNOWN(TInterfacedObject);
void __fastcall Invoke();
};
#endif