00001 00007 /* {{{ Initial comment */ 00008 /* 00009 * $LastChangedDate$ 00010 * $LastChangedRevision$ 00011 * $LastChangedBy$ 00012 * 00013 */ 00014 /* }}} */ 00015 00016 #ifndef _FO_ARCVIEW_H 00017 #define _FO_ARCVIEW_H 00018 00022 typedef struct s_arc_message { 00023 u_int64_t mid; 00024 t_string author; 00025 t_string subject; 00026 t_string category; 00027 t_string content; 00028 t_string email; 00029 t_string hp; 00030 t_string img; 00032 time_t date; 00033 int may_show; 00034 int invisible; 00036 t_cf_template tpl; 00038 t_array childs; 00039 } t_arc_message; 00040 00044 typedef struct s_arc_thread { 00045 u_int64_t tid; 00046 long msg_len; 00048 t_arc_message *msgs; 00049 } t_arc_thread; 00050 00051 00052 #endif
1.3.5