2025-11-18 20:34:20 +09:00
|
|
|
#ifndef __MBIFF_H__
|
|
|
|
|
#define __MBIFF_H__
|
|
|
|
|
|
2025-11-27 02:30:24 +09:00
|
|
|
#define VERSION "0.0.0"
|
|
|
|
|
|
2025-11-18 20:34:20 +09:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
/* Milsko */
|
|
|
|
|
#include <MDE/Foundation.h>
|
|
|
|
|
#include <Mw/Milsko.h>
|
|
|
|
|
|
|
|
|
|
/* External */
|
|
|
|
|
|
|
|
|
|
/* Standard */
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#ifdef HAS_PATHS_H
|
|
|
|
|
#include <paths.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef _PATH_MAILDIR
|
2025-11-18 22:51:48 +09:00
|
|
|
#define _PATH_MAILDIR "/var/spool/mail"
|
2025-11-18 20:34:20 +09:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* main.c */
|
2025-11-22 17:57:17 +09:00
|
|
|
extern MwWidget window, image;
|
2025-11-18 20:34:20 +09:00
|
|
|
extern MwLLPixmap empty, full;
|
|
|
|
|
|
|
|
|
|
/* mail.c */
|
|
|
|
|
void init_mail(void);
|
|
|
|
|
void check_mail(void);
|
|
|
|
|
|
|
|
|
|
#endif
|