aboutsummaryrefslogtreecommitdiffstats
path: root/libmatrix.h
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2015-10-13 18:06:13 +0100
committerRichard van der Hoff <richard@matrix.org>2015-10-13 18:06:13 +0100
commit3b0c7c0469c1176eae75f92e33f40bdc088cbb4f (patch)
tree80c921c0b1ba7236bd8fd9605ca47dab878cb878 /libmatrix.h
parent660c9fce8edfde76a6b40410b0629fd7aa5b4e6c (diff)
downloadpurple-matrix-3b0c7c0469c1176eae75f92e33f40bdc088cbb4f.tar.gz
Rename the 'Null' plugin to 'Matrix'
Still doesn't do anything, but at least it has the right name now...
Diffstat (limited to 'libmatrix.h')
-rw-r--r--libmatrix.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/libmatrix.h b/libmatrix.h
new file mode 100644
index 0000000..7c12106
--- /dev/null
+++ b/libmatrix.h
@@ -0,0 +1,33 @@
+/**
+ * Matrix plugin for libpurple/Pidgin
+ *
+ * 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
+
+/* 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"
+
+#endif