mdz_wchar_destroy - maxdz-gmbh/mdz_unicode GitHub Wiki
Destroy "wide"-character string including underlying data. After destroying, pointer to string is set to NULL
.
If wchar is attached using mdz_wchar_createAttached(), free()
will not be called.
If wchar data is attached using mdz_wchar_attachData()
, m_pData
will not be destroyed.
void mdz_wchar_destroy(struct mdz_Wchar** ppWchar);
Parameter | Description |
---|---|
ppWchar |
pointer to pointer to string returned by mdz_wchar_create() or mdz_wchar_create_attached()
|