type TCefStringWide = record
CEF wide string type definition. Whomever allocates |str| is responsible for providing an appropriate |dtor| implementation that will free the string in the same memory space. When reusing an existing string structure make sure to call |dtor| for the old value before assigning new |str| and |dtor| values. Static strings will have a NULL |dtor| value. Using the below functions if you want this managed for you.
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_types.h">CEF source file: /include/internal/cef_string_types.h (cef_string_wide_t))
str: PWideChar; |
|
length: NativeUInt; |
|
dtor: procedure(str: PWideChar); stdcall; |
str: PWideChar; |
|
This item has no description. |
length: NativeUInt; |
|
This item has no description. |
dtor: procedure(str: PWideChar); stdcall; |
|
This item has no description. |