summaryrefslogtreecommitdiff
path: root/navit/messages.h
diff options
context:
space:
mode:
authortinloaf <tinloaf@ffa7fe5e-494d-0410-b361-a75ebd5db220>2009-03-15 16:59:59 +0000
committertinloaf <tinloaf@ffa7fe5e-494d-0410-b361-a75ebd5db220>2009-03-15 16:59:59 +0000
commitff82bf03b8b42c15ace4ea75b54d688a4f48a72b (patch)
tree67f4dd9988730cb48601692db61d83a94b9d9cb8 /navit/messages.h
parent84c0a6812fc3b095b506575112dbd1a410cc1afd (diff)
downloadnavit-svn-ff82bf03b8b42c15ace4ea75b54d688a4f48a72b.tar.gz
Add:Core:Adding support for general purpose messages
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@2123 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/messages.h')
-rw-r--r--navit/messages.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/navit/messages.h b/navit/messages.h
new file mode 100644
index 00000000..0b6c66c3
--- /dev/null
+++ b/navit/messages.h
@@ -0,0 +1,41 @@
+/**
+ * Navit, a modular navigation system.
+ * Copyright (C) 2005-2008 Navit Team
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * 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 02110-1301, USA.
+ */
+
+#ifndef NAVIT_MESSAGES_H
+#define NAVIT_MESSAGES_H
+
+struct messagelist;
+
+struct message {
+ struct message *next;
+ int id;
+ time_t time;
+ char *text;
+};
+
+/* Prototypes */
+struct attr;
+
+int message_new(struct messagelist *this_, char *message);
+int message_delete(struct messagelist *this_, int mid);
+struct messagelist *messagelist_new(struct attr **attrs);
+void messagelist_init(struct messagelist *this_);
+struct message *message_get(struct messagelist *this_);
+
+#endif