123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include "openmpt/all/BuildSettings.hpp"
- #include "../common/mptPathString.h"
- #include <ShObjIdl.h>
- OPENMPT_NAMESPACE_BEGIN
- class LinkResolver
- {
- IShellLink *psl = nullptr;
- IPersistFile *ppf = nullptr;
- public:
- LinkResolver();
- ~LinkResolver();
- mpt::PathString Resolve(const TCHAR *inPath);
- };
- OPENMPT_NAMESPACE_END
|