mirror of
https://github.com/ars3niy/tdlib-purple
synced 2025-08-22 01:49:29 +00:00
23 lines
438 B
C++
23 lines
438 B
C++
#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;
|
|
|
|
extern const char *stuff;
|
|
extern const char *configSubdir;
|
|
}
|
|
|
|
#endif
|