Some uses of our HylaFAX Clients user wchar_t strings
memcpy(data,s,slength);
}
+void fxStr::operator=(const wchar_t *s)
+{
+ int nl = wcstombs(NULL, s, 0);
+ resizeInternal(nl);
+ slength = nl+1;
+ wcstombs(data, s, slength);
+}
+
void fxStr::append(const char * s, u_int l)
{
if (!l) l = strlen(s);
void operator=(const fxTempStr& s);
void operator=(fxStr const& s);
void operator=(char const *s);
+ void operator=(wchar_t const *s);
/////////////////////////////////////////////////////
// Comparison