Windows-Server-2003/shell/shdocvw/infotip.h

15 lines
643 B
C
Raw Normal View History

2024-08-04 01:28:15 +02:00
typedef HRESULT (STDAPICALLTYPE *PFNREADPROP)(IPropertyStorage *ppropstg, PROPID propid, LPTSTR pszBuf, DWORD cchBuf);
typedef struct {
const FMTID *pfmtid; // FMTID_ for property set
UINT idProp; // property ID
PFNREADPROP pfnRead; // function to fetch the string representation
UINT idFmtString; // format string to use, should be "%1String %2"
} ITEM_PROP;
// standard PFNREADPROP callback types
STDAPI GetStringProp(IPropertyStorage *ppropstg, PROPID propid, LPTSTR pszBuf, DWORD cchBuf);
STDAPI GetInfoTipFromStorage(IPropertySetStorage *ppropsetstg, const ITEM_PROP *pip, WCHAR **ppszTip);