Files
ac-decomp/include/m_notice.h
T
2023-12-07 15:02:41 -05:00

31 lines
637 B
C

#ifndef M_NOTICE_H
#define M_NOTICE_H
#include "types.h"
#include "m_mail.h"
#include "lb_rtc.h"
#ifdef __cplusplus
extern "C" {
#endif
#define mNtc_BOARD_POST_COUNT 15
/* sizeof(mNtc_board_post) == 0xC8 */
typedef struct notice_board_post_s {
/* 0x00 */ u8 message[MAIL_BODY_LEN]; /* post contents */
/* 0xC0 */ lbRTC_time_c post_time; /* date-time of post */
} mNtc_board_post_c;
extern void mNtc_SetInitData();
extern int mNtc_notice_write_num();
extern void mNtc_notice_write(mNtc_board_post_c* new_post);
extern void mNtc_auto_nwrite_time_ct();
extern void mNtc_set_auto_nwrite_data();
#ifdef __cplusplus
}
#endif
#endif