Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#ifndef __PUBENUM_H_
#define __PUBENUM_H_
class CShellEnumPublishedApps : public IEnumPublishedApps { public:
CShellEnumPublishedApps(HDPA hdpaEnum); ~CShellEnumPublishedApps(); // *** IUnknown Methods
virtual STDMETHODIMP QueryInterface(REFIID riid, LPVOID * ppvObj); virtual STDMETHODIMP_(ULONG) AddRef(void) ; virtual STDMETHODIMP_(ULONG) Release(void);
// *** IEnumPublishedApps
STDMETHODIMP Next(IPublishedApp ** ppia); STDMETHODIMP Reset(void); //STDMETHODIMP SetCategory(GUID * pAppCategoryId);
protected:
UINT _cRef;
// Internal list of all IEnumPublishedApps *
HDPA _hdpaEnum; int _iEnum; };
#endif //__PUBENUM_H_
|