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.

19 lines
616 B

  1. // Shell Icon Overlay Manager
  2. #ifndef _OVERLAYMN_H_
  3. #define _OVERLAYMN_H_
  4. // HACK: This is defined in image.c, and it should be in one of the header files
  5. #define MAX_OVERLAY_IMAGES NUM_OVERLAY_IMAGES
  6. #define REGSTR_ICONOVERLAYID TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ShellIconOverlayIdentifiers")
  7. #define REGSTR_ICONOVERLAYCLSID TEXT("CLSID\\%s")
  8. STDAPI CFSIconOverlayManager_CreateInstance(IUnknown* pUnkOuter, REFIID riid, void **ppvOut);
  9. STDAPI_(BOOL) IconOverlayManagerInit();
  10. STDAPI_(void) IconOverlayManagerTerminate();
  11. extern IShellIconOverlayManager * g_psiom;
  12. #endif