* src/modest-marshal.list:
[modest] / src / modest-tny-folder.h
index 97977fc..03c12b6 100644 (file)
@@ -178,6 +178,32 @@ TnyAccount *modest_tny_folder_get_account (TnyFolder *folder);
  **/
 gchar* modest_tny_folder_get_header_unique_id (TnyHeader *header);
 
+/**
+ * modest_tny_folder_has_subfolder_with_name:
+ * @folder: a #TnyFolderStore 
+ * @name: the name to check into subfolders.
+ *   
+ * This function check if subfolders of @folder has the same
+ * name as @name.
+ *
+ * Returns: TRUE if some subfolder has the name @name.
+ **/
+gboolean modest_tny_folder_has_subfolder_with_name (TnyFolderStore *folder,
+                                                   const gchar *name);
+
+/**
+ * modest_tny_folder_is_ancestor:
+ * @folder: a #TnyFolder 
+ * @ancestor: a #TnyFolderStore
+ * 
+ * This function checks if @ancestor is an ancestor of @folder
+ * 
+ * Returns: TRUE if @ancestor is an ancestor of @folder, FALSE
+ * otherwise
+ **/
+gboolean modest_tny_folder_is_ancestor (TnyFolder *folder,
+                                       TnyFolderStore *ancestor);
+
 G_END_DECLS
 
 #endif /* __MODEST_TNY_FOLDER_H__*/