diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 09:08:18 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 09:08:18 +0800 |
commit | 9c28295de36c8c18c01c5c7846566526cee7f1ac (patch) | |
tree | 80bdfe6eefc6b8d3c720191029fc7c899d8ec891 /shell/e-storage.h | |
parent | 80445852285529e0d323c8bb076512b69eaf96a3 (diff) | |
download | gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar.gz gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar.bz2 gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar.lz gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar.xz gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.tar.zst gsoc2013-evolution-9c28295de36c8c18c01c5c7846566526cee7f1ac.zip |
Start implementing a physical URI property for the toplevel nodes in
storages. Also add initial code in the shell to handle that.
svn path=/trunk/; revision=6787
Diffstat (limited to 'shell/e-storage.h')
-rw-r--r-- | shell/e-storage.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-storage.h b/shell/e-storage.h index 4500d9bb4f..d44a4161df 100644 --- a/shell/e-storage.h +++ b/shell/e-storage.h @@ -95,8 +95,9 @@ struct _EStorageClass { GtkType e_storage_get_type (void); -void e_storage_construct (EStorage *storage); -EStorage *e_storage_new (void); +void e_storage_construct (EStorage *storage, + const char *toplevel_node_uri); +EStorage *e_storage_new (const char *toplevel_node_uri); gboolean e_storage_path_is_relative (const char *path); gboolean e_storage_path_is_absolute (const char *path); @@ -107,6 +108,7 @@ EFolder *e_storage_get_folder (EStorage *storage, const char *path); const char *e_storage_get_name (EStorage *storage); +const char *e_storage_get_toplevel_node_uri (EStorage *storage); /* Folder operations. */ |