midori/midori/midori-bookmarks.h

41 lines
1.1 KiB
C

/*
Copyright (C) 2010 Christian Dywan <christian@twotoasts.de>
Copyright (C) 2010 Alexander Butenko <a.butenka@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
See the file COPYING for the full license text.
*/
#ifndef __MIDORI_BOOKMARKS_H__
#define __MIDORI_BOOKMARKS_H__ 1
#include <sqlite3.h>
#include <katze/katze.h>
void
midori_bookmarks_add_item_cb (KatzeArray* array,
KatzeItem* item,
sqlite3* db);
void
midori_bookmarks_remove_item_cb (KatzeArray* array,
KatzeItem* item,
sqlite3* db);
KatzeArray*
midori_bookmarks_new (char** errmsg);
void
midori_bookmarks_on_quit (KatzeArray* array);
void
midori_bookmarks_import (const gchar* filename,
sqlite3* db);
#endif /* !__MIDORI_BOOKMARKS_H__ */