From 3b0c7c0469c1176eae75f92e33f40bdc088cbb4f Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 13 Oct 2015 18:06:13 +0100 Subject: Rename the 'Null' plugin to 'Matrix' Still doesn't do anything, but at least it has the right name now... --- libmatrix.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 libmatrix.h (limited to 'libmatrix.h') 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 -- cgit