1 #pragma once
2 
3 #include <ShlObj.h>
4 #include <Shlwapi.h>
5 #include <strsafe.h>
6 #include <thumbcache.h>
7 #include <Windows.h>
8 
9 STDAPI_(ULONG) DllAddRef();
10 STDAPI_(ULONG) DllRelease();
11 STDAPI_(HINSTANCE) DllInstance();
12 
13 #define szCLSID_SvgThumbnailProvider L"{EF399C53-03F4-489E-98BF-69E00F695ECD}"
14 DEFINE_GUID(CLSID_SvgThumbnailProvider,
15 0xef399c53, 0x3f4, 0x489e, 0x98, 0xbf, 0x69, 0xe0, 0xf, 0x69, 0x5e, 0xcd);
16