Lines Matching refs:target
441 WCHAR* target;
452 target = _glfw_calloc(count, sizeof(WCHAR));
454 if (!MultiByteToWideChar(CP_UTF8, 0, source, -1, target, count))
458 _glfw_free(target);
462 return target;
469 char* target;
480 target = _glfw_calloc(size, 1);
482 if (!WideCharToMultiByte(CP_UTF8, 0, source, -1, target, size, NULL, NULL))
486 _glfw_free(target);
490 return target;