You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
338 B
20 lines
338 B
#ifndef MDIR_H |
|
#define MDIR_H |
|
|
|
#include <e.h> |
|
#include "e_mod_main.h" |
|
|
|
typedef struct _MdirClient MdirClient; |
|
|
|
struct _MdirClient |
|
{ |
|
void *data; |
|
Config_Box *config; |
|
Ecore_File_Monitor *monitor; |
|
}; |
|
|
|
void _mail_mdir_add_mailbox(void *data, void *data2); |
|
void _mail_mdir_del_mailbox(void *data); |
|
void _mail_mdir_shutdown(); |
|
|
|
#endif
|
|
|