type ICefSharedMemoryRegion = interface(ICefBaseRefCounted)
Interface that wraps platform-dependent share memory region mapping.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_shared_memory_region_capi.h">CEF source file: /include/capi/cef_shared_memory_region_capi.h (cef_shared_memory_region_t))
function IsValid: boolean; |
|
function Size: NativeUInt; |
|
function Memory: pointer; |
function IsValid: boolean; |
|
Returns true (1) if the mapping is valid. Attributes
|
function Size: NativeUInt; |
|
Returns the size of the mapping in bytes. Returns 0 for invalid instances. |
function Memory: pointer; |
|
Returns the pointer to the memory. Returns nullptr for invalid instances. The returned pointer is only valid for the life span of this object. |