| Chromium Embedded Framework (CEF)
    128.0.1+gc234e7f+chromium-128.0.6613.7
    | 
CEF string type definitions. More...
#include "include/internal/cef_string_types.h"
| Public Attributes | |
| wchar_t * | str | 
| size_t | length | 
| void(* | dtor )(wchar_t *str) | 
CEF string type definitions.
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.
| void(* cef_string_wide_t::dtor) (wchar_t *str) | 
| size_t cef_string_wide_t::length | 
| wchar_t* cef_string_wide_t::str |