|
找到应用的名称
这个哪里找?
我看到个例子
TCHAR* pUrl = L "http://wap.sohu.com ";
SHELLEXECUTEINFO execInf;
ZeroMemory(&execInf, sizeof(execInf));
execInf.cbSize = sizeof(execInf);
execInf.fMask = SEE_MASK_NOCLOSEPROCESS;
execInf.lpFile = pUrl; ————————————————————————————》这个是不是找他的路径??MSDN翻译过来还是不清楚
execInf.lpVerb = TEXT( "open ");
ShellExecuteEx(&execInf);
弹出无法找到设备 |
|