Searched defs:pShl (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/platform/win/
H A DUIDesktopServices_win.cpp37 IShellLink *pShl = NULL; local
42 HRESULT rc = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void**)(&pShl));
47 rc = pShl->SetPath(strVBox.utf16());
50 rc = pShl->SetWorkingDirectory(strVBoxDir.utf16());
54 rc = pShl->SetArguments(strArgs.utf16());
58 rc = pShl->SetDescription(strDesc.utf16());
61 rc = pShl->QueryInterface(IID_IPersistFile, (void**)&pPPF);
69 if (pShl)
70 pShl->Release();

Completed in 42 milliseconds