Commit ebee00ed ebee00ed9581b62f40b6a70d0ec74114c6f478cb by Sergey Poznyakoff

(mu_0_6_folder_list,mu_0_6_folder_lsub,mu_0_6_folder_list_destroy): Compatibility functions.

1 parent 16cf545a
...@@ -74,7 +74,22 @@ extern int mu_folder_decrement (mu_folder_t); ...@@ -74,7 +74,22 @@ extern int mu_folder_decrement (mu_folder_t);
74 74
75 extern void mu_list_response_free (void *data); 75 extern void mu_list_response_free (void *data);
76 76
77 /* Deprecated calls */
78 struct mu_0_6_folder_list
79 {
80 struct mu_list_response **element;
81 size_t num;
82 };
77 83
84 extern int mu_0_6_folder_list (mu_folder_t, const char *, const char *,
85 struct mu_0_6_folder_list *)
86 __attribute__((deprecated));
87 extern int mu_0_6_folder_lsub (mu_folder_t, const char *, const char *,
88 struct mu_0_6_folder_list *)
89 __attribute__((deprecated));
90 extern int mu_0_6_folder_list_destroy (struct mu_0_6_folder_list *)
91 __attribute__((deprecated));
92
78 #ifdef __cplusplus 93 #ifdef __cplusplus
79 } 94 }
80 #endif 95 #endif
......