~webapps/libunity-webapps/precise

« back to all changes in this revision

Viewing changes to src/unity-webapps-app-db.h

  • Committer: Ken VanDine
  • Date: 2012-07-17 16:24:04 UTC
  • mfrom: (294.1.2 libunity-webapps)
  • Revision ID: ken.vandine@canonical.com-20120717162404-cu0ky5qoyqy1yzu0
Tags: 1.7.0-0precise1
releasing version 1.7.0-0precise1

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef __UNITY_WEBAPPS_APP_DB_H
24
24
#define __UNITY_WEBAPPS_APP_DB_H
25
25
 
26
 
gboolean unity_webapps_app_db_open ();
27
 
 
28
26
gboolean unity_webapps_app_db_update_homepage (const gchar *name, const gchar *domain, const gchar *homepage);
29
27
gchar *unity_webapps_app_db_get_homepage (const gchar *name, const gchar *domain);
30
28
 
 
29
gboolean unity_webapps_app_db_open ();
 
30
 
 
31
gboolean unity_webapps_app_db_add_action (const gchar *name, const gchar *domain, const gchar *label, const gchar *page);
 
32
gboolean unity_webapps_app_db_clear_actions (const gchar *name, const gchar *domain);
 
33
gboolean unity_webapps_app_db_get_actions (const gchar *name, const gchar *domain, gchar ***labels, gchar ***pages);
 
34
 
31
35
#endif