Home | History | Annotate | Download | only in win

Lines Matching defs:temp

205   wchar_t temp[MAX_PATH];
210 if (FAILED(i_shell_link->GetPath(temp, MAX_PATH, NULL, SLGP_UNCPRIORITY)))
212 properties->set_target(FilePath(temp));
216 if (FAILED(i_shell_link->GetWorkingDirectory(temp, MAX_PATH)))
218 properties->set_working_dir(FilePath(temp));
222 if (FAILED(i_shell_link->GetArguments(temp, MAX_PATH)))
224 properties->set_arguments(temp);
229 if (FAILED(i_shell_link->GetDescription(temp, MAX_PATH)))
231 properties->set_description(temp);
236 if (FAILED(i_shell_link->GetIconLocation(temp, MAX_PATH, &temp_index)))
238 properties->set_icon(FilePath(temp), temp_index);