2
0
mirror of https://github.com/ars3niy/tdlib-purple synced 2025-08-23 10:27:24 +00:00
tdlib-purple/config.cpp

16 lines
525 B
C++
Raw Normal View History

namespace config {
#define PACKAGE_VERSION "0.0.0"
#define GIT_COMMIT "unknown"
char pluginId[] = "tdlib-purple";
char pluginName[] = "Telegram (tdlib)";
char versionString[] = PACKAGE_VERSION "\n\t\t\tcommit: " GIT_COMMIT "\n\t\t\ttdlib: " TD_VERSION;
char pluginSummary[] = "Telegram using tdlib";
char pluginDesc[] = "Telegram Protocol Plugin using tdlib";
char pluginAuthor[] = "Arseniy Lartsev";
char projectUrl[] = "https://github.com/ars3niy/tdlib-purple";
2020-02-22 11:42:04 +01:00
const char *configSubdir = "tdlib";
}