* mu_maildir_mkmdir => mu_maildir_mkdir

This commit is contained in:
Dirk-Jan C. Binnema
2010-12-05 15:40:40 +02:00
parent badc37d3b5
commit 8321f6718a
4 changed files with 12 additions and 9 deletions

View File

@ -25,6 +25,7 @@
#include <sys/types.h> /* for mode_t */
#include "mu-result.h" /* for MuResult */
G_BEGIN_DECLS
/**
* create a new maildir. Note, if the function fails 'halfway', it
@ -39,7 +40,7 @@
*
* @return TRUE if creation succeeded, FALSE otherwise
*/
gboolean mu_maildir_mkmdir (const char* path, mode_t mode, gboolean noindex);
gboolean mu_maildir_mkdir (const char* path, mode_t mode, gboolean noindex);
/**
@ -72,7 +73,7 @@ typedef MuResult (*MuMaildirWalkMsgCallback)
* with 'enter' being TRUE upon entering, FALSE otherwise
*/
typedef MuResult (*MuMaildirWalkDirCallback)
(const char* fullpath, gboolean enter, void *user_data);
(const char* fullpath, gboolean enter, void *user_data);
/**
* start a recursive walk of a maildir; for each file found, we call
@ -109,4 +110,6 @@ MuResult mu_maildir_walk (const char *path, MuMaildirWalkMsgCallback cb_msg,
*/
gboolean mu_maildir_clear_links (const gchar* dir);
G_END_DECLS
#endif /*__MU_MAILDIR_H__*/