windows-nt/Source/XPSP1/NT/shell/shell32/ovrlaymn.h

20 lines
616 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// Shell Icon Overlay Manager
#ifndef _OVERLAYMN_H_
#define _OVERLAYMN_H_
// HACK: This is defined in image.c, and it should be in one of the header files
#define MAX_OVERLAY_IMAGES NUM_OVERLAY_IMAGES
#define REGSTR_ICONOVERLAYID TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ShellIconOverlayIdentifiers")
#define REGSTR_ICONOVERLAYCLSID TEXT("CLSID\\%s")
STDAPI CFSIconOverlayManager_CreateInstance(IUnknown* pUnkOuter, REFIID riid, void **ppvOut);
STDAPI_(BOOL) IconOverlayManagerInit();
STDAPI_(void) IconOverlayManagerTerminate();
extern IShellIconOverlayManager * g_psiom;
#endif