Added missing prototype

This commit is contained in:
Pierre Pronchery 2012-04-04 15:07:57 +00:00
parent ce29c5f2bc
commit d91b1f34f6

View File

@ -1,5 +1,5 @@
/* $Id$ */ /* $Id$ */
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */ /* Copyright (c) 2011-2012 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Mailer */ /* This file is part of DeforaOS Desktop Mailer */
/* This program is free software: you can redistribute it and/or modify /* 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 * it under the terms of the GNU General Public License as published by
@ -34,6 +34,7 @@ void message_delete(Message * message);
/* accessors */ /* accessors */
GtkTextBuffer * message_get_body(Message * message); GtkTextBuffer * message_get_body(Message * message);
AccountMessage * message_get_data(Message * message); AccountMessage * message_get_data(Message * message);
char const * message_get_header(Message * message, char const * header);
gboolean message_get_iter(Message * message, GtkTreeIter * iter); gboolean message_get_iter(Message * message, GtkTreeIter * iter);
GtkListStore * message_get_store(Message * message); GtkListStore * message_get_store(Message * message);