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);
extern void mu_list_response_free (void *data);
/* Deprecated calls */
struct mu_0_6_folder_list
{
struct mu_list_response **element;
size_t num;
};
extern int mu_0_6_folder_list (mu_folder_t, const char *, const char *,
struct mu_0_6_folder_list *)
__attribute__((deprecated));
extern int mu_0_6_folder_lsub (mu_folder_t, const char *, const char *,
struct mu_0_6_folder_list *)
__attribute__((deprecated));
extern int mu_0_6_folder_list_destroy (struct mu_0_6_folder_list *)
__attribute__((deprecated));
#ifdef __cplusplus
}
#endif
......