Lines Matching defs:title
45 * Max title length; the only thing MSDN tells us about the maximum length
46 * of the console title is that it is smaller than 64K. However in practice
48 * of the title is or can be, at least not on XP. To make it even more
51 * just don't put the novel you're writing in the title, unless the plot
68 /* Cached copy of the process title, plus a mutex guarding it. */
82 /* Initialize process title access mutex. */
394 int uv_set_process_title(const char* title) {
401 /* Find out how big the buffer for the wide-char title must be */
402 length = MultiByteToWideChar(CP_UTF8, 0, title, -1, NULL, 0);
414 length = MultiByteToWideChar(CP_UTF8, 0, title, -1, title_w, length);
420 /* If the title must be truncated insert a \0 terminator there */
432 process_title = uv__strdup(title);