Switch to unified view

a/src/main.hxx b/src/main.hxx
...
...
21
#include <unordered_set>
21
#include <unordered_set>
22
#include <mutex>
22
#include <mutex>
23
23
24
extern std::string g_configfilename;
24
extern std::string g_configfilename;
25
extern std::string g_datadir;
25
extern std::string g_datadir;
26
extern bool g_enableL16;
26
class ConfSimple;
27
class ConfSimple;
27
extern std::mutex g_configlock;
28
extern std::mutex g_configlock;
28
extern ConfSimple *g_config;
29
extern ConfSimple *g_config;
29
extern std::string g_protocolInfo;
30
extern std::unordered_set<std::string> g_supportedFormats;
31
30
32
typedef struct ohInfoDesc {
31
typedef struct ohInfoDesc {
33
    std::string name;
32
    std::string name;
34
    std::string info;
33
    std::string info;
35
    std::string url;
34
    std::string url;