2.10.0 unleashed
[claws.git] / src / remotefolder.c
blobaaffab01151587313798af06ecaa77f83d4f9f27
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2002-2007 by the Claws Mail Team and Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #include <glib.h>
22 #include "remotefolder.h"
24 void folder_remote_folder_init(Folder *folder, const gchar *name,
25 const gchar *path)
27 folder_init(folder, name);
28 REMOTE_FOLDER(folder)->session = NULL;
31 void folder_remote_folder_destroy(RemoteFolder *rfolder)
33 g_return_if_fail(rfolder != NULL);
35 if (rfolder->session)
36 session_destroy(rfolder->session);