Lines Matching full:buffersize
756 int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0);
757 char* buffer = (char*)malloc(bufferSize + 1);
758 ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0);
759 fwrite(buffer, 1, bufferSize, stdout);