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))
| Public | function IsValid: boolean; |
| Public | function Size: NativeUInt; |
| Public | function Memory: pointer; |
| Public | function IsValid: boolean; |
|
Returns true (1) if the mapping is valid. Attributes
| |
| Public | function Size: NativeUInt; |
|
Returns the size of the mapping in bytes. Returns 0 for invalid instances. | |
| Public | 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. | |