blob: 486d0b3890027fd323585e42a1c840592506443b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/**
* libmatrix.h
*
* Defines some common macros and structures which are used in a number of
* places throughout the code.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#ifndef LIBMATRIX_H
#define LIBMATRIX_H
#include <glib.h>
/* stub out the gettext macros for now */
#define _(a) (a)
#define N_(a) (a)
/* data for our 'about' box */
#define DISPLAY_VERSION "1.0"
#define MATRIX_WEBSITE "http://matrix.org"
/* our protocol ID string */
#define PRPL_ID "prpl-matrix"
/* identifiers for account options
*
* some of these are registered as options for the UI, and some are strictly
* internal. But they end up in the same place in the settings file, so they
* share a namespace.
*/
#define PRPL_ACCOUNT_OPT_HOME_SERVER "home_server"
#define PRPL_ACCOUNT_OPT_NEXT_BATCH "next_batch"
#define PRPL_ACCOUNT_OPT_REPLAY_OLD_MESSAGES "replay_messages"
/* defaults for account options */
#define DEFAULT_HOME_SERVER "https://matrix.org"
/* identifiers for the chat info / "components" */
#define PRPL_CHAT_INFO_ROOM_ID "room_id"
#endif
|