2
0
mirror of https://github.com/ars3niy/tdlib-purple synced 2025-08-22 09:57:52 +00:00
tdlib-purple/config.h

23 lines
438 B
C
Raw Normal View History

#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[];
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;
}
#endif