Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
27
Src/Winamp/ExplorerFindFile.h
Normal file
27
Src/Winamp/ExplorerFindFile.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef NULLSOFT_WINAMP_EXPLORERFINDFILE_H
|
||||
#define NULLSOFT_WINAMP_EXPLORERFINDFILE_H
|
||||
|
||||
#include "../Agave/ExplorerFindFile/api_explorerfindfile.h"
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
class ExplorerFindFile : public api_explorerfindfile
|
||||
{
|
||||
public:
|
||||
ExplorerFindFile();
|
||||
~ExplorerFindFile();
|
||||
static const char *getServiceName() { return "ExplorerFindFile API"; }
|
||||
static const GUID getServiceGuid() { return ExplorerFindFileApiGUID; }
|
||||
BOOL AddFile(wchar_t* file);
|
||||
BOOL ShowFiles();
|
||||
void Reset();
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
|
||||
typedef std::map<LPITEMIDLIST, std::vector<LPCITEMIDLIST>> PIDLListMap;
|
||||
PIDLListMap pidlList;
|
||||
};
|
||||
|
||||
extern ExplorerFindFile *explorerFindFileManager;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue