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
+96
View File
@@ -0,0 +1,96 @@
// CodeGear C++Builder
// Copyright (c) 1995, 2025 by Embarcadero Technologies, Inc.
// All rights reserved
// (DO NOT EDIT: machine generated header) 'uCEFValue.pas' rev: 37.00 (Windows)
#ifndef uCEFValueHPP
#define uCEFValueHPP
#pragma delphiheader begin
#pragma option push
#if defined(__BORLANDC__) && !defined(__clang__)
#pragma option -w- // All warnings off
#pragma option -Vx // Zero-length empty class member
#endif
#pragma pack(push,8)
#include <System.hpp>
#include <SysInit.hpp>
#include <uCEFBaseRefCounted.hpp>
#include <uCEFInterfaces.hpp>
#include <uCEFTypes.hpp>
//-- user supplied -----------------------------------------------------------
namespace Ucefvalue
{
//-- forward type declarations -----------------------------------------------
class DELPHICLASS TCefValueRef;
//-- type declarations -------------------------------------------------------
#pragma pack(push,4)
class PASCALIMPLEMENTATION TCefValueRef : public Ucefbaserefcounted::TCefBaseRefCountedRef
{
typedef Ucefbaserefcounted::TCefBaseRefCountedRef inherited;
protected:
bool __fastcall IsValid();
bool __fastcall IsOwned();
bool __fastcall IsReadOnly();
bool __fastcall IsSame(const Ucefinterfaces::_di_ICefValue that);
bool __fastcall IsEqual(const Ucefinterfaces::_di_ICefValue that);
Ucefinterfaces::_di_ICefValue __fastcall Copy();
Uceftypes::TCefValueType __fastcall GetType();
bool __fastcall GetBool();
int __fastcall GetInt();
double __fastcall GetDouble();
Uceftypes::ustring __fastcall GetString();
Ucefinterfaces::_di_ICefBinaryValue __fastcall GetBinary();
Ucefinterfaces::_di_ICefDictionaryValue __fastcall GetDictionary();
Ucefinterfaces::_di_ICefListValue __fastcall GetList();
bool __fastcall SetNull();
bool __fastcall SetBool(bool value);
bool __fastcall SetInt(int value);
bool __fastcall SetDouble(double value);
bool __fastcall SetString(const Uceftypes::ustring value);
bool __fastcall SetBinary(const Ucefinterfaces::_di_ICefBinaryValue value);
bool __fastcall SetDictionary(const Ucefinterfaces::_di_ICefDictionaryValue value);
bool __fastcall SetList(const Ucefinterfaces::_di_ICefListValue value);
public:
__classmethod Ucefinterfaces::_di_ICefValue __fastcall UnWrap(void * data);
__classmethod Ucefinterfaces::_di_ICefValue __fastcall New();
public:
/* TCefBaseRefCountedRef.Create */ inline __fastcall virtual TCefValueRef(void * data) : Ucefbaserefcounted::TCefBaseRefCountedRef(data) { }
/* TCefBaseRefCountedRef.Destroy */ inline __fastcall virtual ~TCefValueRef() { }
private:
void *__ICefValue; // Ucefinterfaces::ICefValue
public:
#if defined(MANAGED_INTERFACE_OPERATORS)
// {66F9F439-B12B-4EC3-A945-91AE4EF4D4BA}
operator Ucefinterfaces::_di_ICefValue()
{
Ucefinterfaces::_di_ICefValue intf;
this->GetInterface(intf);
return intf;
}
#else
operator Ucefinterfaces::ICefValue*(void) { return (Ucefinterfaces::ICefValue*)&__ICefValue; }
#endif
};
#pragma pack(pop)
//-- var, const, procedure ---------------------------------------------------
} /* namespace Ucefvalue */
#if !defined(DELPHIHEADER_NO_IMPLICIT_NAMESPACE_USE) && !defined(NO_USING_NAMESPACE_UCEFVALUE)
using namespace Ucefvalue;
#endif
#pragma pack(pop)
#pragma option pop
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // uCEFValueHPP