Delta Chat Core C-API
mrmailbox_internal.h
1 /*******************************************************************************
2  *
3  * Delta Chat Core
4  * Copyright (C) 2017 Björn Petersen
5  * Contact: r10s@b44t.com, http://b44t.com
6  *
7  * This program is free software: you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License as published by the Free Software
9  * Foundation, either version 3 of the License, or (at your option) any later
10  * version.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program. If not, see http://www.gnu.org/licenses/ .
19  *
20  ******************************************************************************/
21 
22 
23 #ifndef __MRMAILBOX_INTERNAL_H__
24 #define __MRMAILBOX_INTERNAL_H__
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 
30 /* Includes that are used frequently. This file may also be used to create predefined headers. */
31 #include "mrmailbox.h"
32 #include <stdlib.h>
33 #include <string.h>
34 #include "mrsqlite3.h"
35 #include "mrtools.h"
36 #include "mrparam.h"
37 #include "mrstock.h"
38 #include "mrchat-private.h"
39 #include "mrchatlist-private.h"
40 #include "mrlot-private.h"
41 #include "mrmsg-private.h"
42 #include "mrcontact-private.h"
43 #include "mrmailbox-private.h"
44 
45 
46 #ifdef __cplusplus
47 } /* /extern "C" */
48 #endif
49 #endif /* __MRMAILBOX_INTERNAL_H__ */
50