Home
last modified time | relevance | path

Searched refs:title_w (Results 1 – 1 of 1) sorted by relevance

/libuv/src/win/
H A Dutil.c347 WCHAR* title_w = NULL; in uv_set_process_title() local
351 err = uv__convert_utf8_to_utf16(title, &title_w); in uv_set_process_title()
356 length = wcslen(title_w); in uv_set_process_title()
358 title_w[MAX_TITLE_LENGTH - 1] = L'\0'; in uv_set_process_title()
360 if (!SetConsoleTitleW(title_w)) { in uv_set_process_title()
373 uv__free(title_w); in uv_set_process_title()
379 WCHAR title_w[MAX_TITLE_LENGTH]; in uv__get_process_title() local
382 wlen = GetConsoleTitleW(title_w, sizeof(title_w) / sizeof(WCHAR)); in uv__get_process_title()
386 return uv__convert_utf16_to_utf8(title_w, wlen, &process_title); in uv__get_process_title()

Completed in 6 milliseconds