2020-02-16 17:59:19 +01:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
|
|
|
namespace config {
|
|
|
|
|
|
|
|
// These have to be non-const char* because that's what libpurple accepts
|
|
|
|
extern char pluginId[];
|
|
|
|
extern char pluginName[];
|
|
|
|
extern char versionString[];
|
|
|
|
extern char pluginSummary[];
|
|
|
|
extern char pluginDesc[];
|
|
|
|
extern char pluginAuthor[];
|
|
|
|
extern char projectUrl[];
|
|
|
|
|
2020-06-06 23:45:41 +02:00
|
|
|
extern int api_id;
|
|
|
|
extern const char *api_hash;
|
|
|
|
|
2020-06-07 20:54:19 +02:00
|
|
|
extern const char *stuff;
|
2020-02-22 11:42:04 +01:00
|
|
|
extern const char *configSubdir;
|
2020-02-16 17:59:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|