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.
22 lines
397 B
22 lines
397 B
/*
|
|
* TREEWALK.h -- Shell Icon Overlay Manager
|
|
*/
|
|
|
|
#ifndef _TREEWALK_H_
|
|
#define _TREEWALK_H_
|
|
|
|
//
|
|
// Prototypes for all modules
|
|
//
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
STDAPI CShellTreeWalker_CreateInstance(IUnknown* pUnkOuter, REFIID riid, OUT LPVOID * ppvOut);
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
BOOL BeenThereDoneThat(LPCTSTR pszOriginal, LPCTSTR pszPath);
|
|
|
|
#endif
|