Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IArrayValue ¶
type IArrayValue interface { Size() uint32 GetType(index uint32) consts.TCefValueType GetBool(index uint32) bool GetInt(index uint32) int32 GetDouble(index uint32) (result float64) GetString(index uint32) string GetIValue(index uint32) IValue GetIBinary(index uint32) IBinaryValue GetIObject(index uint32) IObjectValue GetIArray(index uint32) IArrayValue Free() }
type IBinaryValue ¶
type ICefProcessMessageIPC ¶
type ICefProcessMessageIPC interface {
Instance() uintptr
}
type IObjectValue ¶
type IObjectValue interface { Size() uint32 GetType(key string) consts.TCefValueType GetBool(key string) bool GetInt(key string) int32 GetDouble(key string) (result float64) GetString(key string) string GetIKeys() IV8ValueKeys GetIValue(key string) IValue GetIBinary(key string) IBinaryValue GetIObject(key string) IObjectValue GetIArray(key string) IArrayValue Free() }
type IProcessMessage ¶
type IV8ValueKeys ¶
type IValue ¶
type IValue interface { GetType() consts.TCefValueType GetBool() bool GetInt() int32 GetDouble() (result float64) GetString() string GetIBinary() IBinaryValue GetIObject() IObjectValue GetIArray() IArrayValue Free() }
Click to show internal directories.
Click to hide internal directories.