mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-29 12:52:37 +00:00
Fix filename option in web interface. Fix when failed to download any files, the program still treat it as succeeded. Add --artifact startup option to specify which artifact(s) should be generated. Tweak Emoji matching rules. Update local rulesets and configurations.
25 lines
676 B
C++
25 lines
676 B
C++
#ifndef INTERFACES_H_INCLUDED
|
|
#define INTERFACES_H_INCLUDED
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include "subexport.h"
|
|
#include "webserver.h"
|
|
|
|
void refreshRulesets(string_array &ruleset_list, std::vector<ruleset_content> &rca);
|
|
void readConf();
|
|
void generateBase();
|
|
int simpleGenerator();
|
|
|
|
std::string getScript(RESPONSE_CALLBACK_ARGS);
|
|
std::string getProfile(RESPONSE_CALLBACK_ARGS);
|
|
std::string getRuleset(RESPONSE_CALLBACK_ARGS);
|
|
std::string getRewriteRemote(RESPONSE_CALLBACK_ARGS);
|
|
|
|
std::string subconverter(RESPONSE_CALLBACK_ARGS);
|
|
std::string simpleToClashR(RESPONSE_CALLBACK_ARGS);
|
|
std::string surgeConfToClash(RESPONSE_CALLBACK_ARGS);
|
|
|
|
#endif // INTERFACES_H_INCLUDED
|