Seaside/SpyCustom/sdk/ifilelist.h
2021-06-16 18:46:33 +03:00

16 lines
202 B
C++

#ifndef IFILELIST_H
#define IFILELIST_H
#ifdef _WIN32
#endif
class IFileList
{
public:
virtual bool IsFileInList(const char* pFilename) = 0;
virtual void Release() = 0;
};
#endif