Lines Matching defs:cmd_line_msg
160 char cmd_line_msg[64];
161 size_t cmd_line_size = sizeof(cmd_line_msg);
164 cmd_line_msg[0] = '\0';
168 // We concat at the end of cmd_line_msg, so that strncat isn't a victim of Schlemiel the Painter
169 // We write to the end - 1 of cmd_line_msg, as the end is actually a null terminator
171 loader_strncat(cmd_line_msg + num_used, cmd_line_size - num_used, string_literal_to_cat, sizeof(string_literal_to_cat)); \
211 loader_strncat(cmd_line_msg + num_used, cmd_line_size - num_used, space_buffer, 19 - num_used);
214 // Assert that we didn't write more than what is available in cmd_line_msg
218 fputs(cmd_line_msg, stderr);
223 OutputDebugString(cmd_line_msg);
230 strcpy(result, cmd_line_msg);