Home | History | Annotate | Download | only in win

Lines Matching defs:sei

30   SHELLEXECUTEINFO sei = { sizeof(sei) };
31 sei.fMask = SEE_MASK_FLAG_DDEWAIT;
32 sei.nShow = SW_SHOWNORMAL;
33 sei.lpVerb = L"openas";
34 sei.lpFile = full_path.c_str();
35 return (TRUE == ::ShellExecuteExW(&sei));
44 SHELLEXECUTEINFO sei = { sizeof(sei) };
45 sei.fMask = mask;
46 sei.nShow = SW_SHOWNORMAL;
47 sei.lpFile = full_path.c_str();
48 sei.lpDirectory = directory.c_str();
50 sei.lpParameters = args.c_str();
52 if (::ShellExecuteExW(&sei))