FIX: windows build process: enable png build
[navit-package] / navit / messages.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef NAVIT_MESSAGES_H
21 #define NAVIT_MESSAGES_H
22
23 struct messagelist;
24
25 struct message {
26         struct message *next;
27         int id;
28         time_t time;
29         char *text;
30 };
31
32 /* Prototypes */
33 struct attr;
34
35 int message_new(struct messagelist *this_, char *message);
36 int message_delete(struct messagelist *this_, int mid);
37 struct messagelist *messagelist_new(struct attr **attrs);
38 void messagelist_init(struct messagelist *this_);
39 struct message *message_get(struct messagelist *this_);
40
41 #endif