RenameServer/library.hpp

27 lines
472 B
C++
Raw Normal View History

2021-07-08 05:41:34 +00:00
#ifndef SIMPLE_RENAME_HPP
#define SIMPLE_RENAME_HPP
#include <vector>
#include "rename_object.hpp"
#ifdef _WIN32
using string = std::wstring;
#else
using string = std::string;
#endif
extern "C" {
bool init(const string &configuration);
std::vector< RenameObject > getOptions( const RenameObject &search );
bool renamePath( const string &path, const RenameObject &renamer );
std::vector< string > getCustomKeys();
const string getName();
2021-07-08 05:41:34 +00:00
}
#endif // TV_RENAME_HPP