[STOBJECT]

* Create skeleton for the SysTray shell service object DLL. No tray icons are created yet.
* Tranks Robert Naumann for providing the icon resources, and some file templates.

svn path=/branches/shell-experiments/; revision=63732
This commit is contained in:
David Quintana 2014-07-23 18:00:36 +00:00
parent c3479eb2b2
commit e5ac3d04eb
15 changed files with 333 additions and 0 deletions

View file

@ -412,6 +412,8 @@ CStartMenu_Constructor(REFIID riid, void **ppv)
return hr;
hr = SHGetSpecialFolderLocation(NULL, CSIDL_PROGRAMS, &pidlProgramsAbsolute);
if (FAILED_UNEXPECTEDLY(hr))
return hr;
pidlPrograms = ILClone(ILFindLastID(pidlProgramsAbsolute));
ILFree(pidlProgramsAbsolute);