Initial commit

This commit is contained in:
2026-06-12 23:18:12 +08:00
commit 424bde1b02
249 changed files with 40338 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
//---------------------------------------------------------------------------
#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