Please, how can I find out the length of a variable of type wchar_t* in c++?
wchar_t*
code example below:
wchar_t* dimObjPrefix = L\"retro_\";
If you want to know the size of a wchar_t string (wchar_t *), you want to use wcslen(3):
wchar_t
wchar_t *
size_t wcslen (const wchar_t *ws);