-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmms.h
More file actions
41 lines (32 loc) · 732 Bytes
/
mms.h
File metadata and controls
41 lines (32 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*********************************************************************
* Filename: mms.h
*
*
* Author: Bright Pan <loststriker@gmail.com>
* Created at: 2013-05-06 11:12:03
*
*
*
* Change Log:
*
* Copyright (C) 2013 Yuettak Co.,Ltd
********************************************************************/
#ifndef _MMS_H_
#define _MMS_H_
#include "rtthread.h"
#include "rtdevice.h"
#include "alarm.h"
#include <dfs_init.h>
#include <dfs_elm.h>
#include <dfs_fs.h>
#include "dfs_posix.h"
#define MMS_MAIL_MAX_MSGS 20
typedef struct
{
time_t time;
ALARM_TYPEDEF alarm_type;
char *pic_name;
}MMS_MAIL_TYPEDEF;
extern rt_mq_t mms_mq;
void mms_mail_process_thread_entry(void *parameter);
#endif