X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fmessage.h;h=525444f392cc0f849445aa71ddbab9aa0c0a2a6b;hp=78c5dc3e33fa066bd6d5f5de3766174437810600;hb=df70e07e24add1869bcc9b7af2277d9d0c09a281;hpb=31edbe030ac69952aa535730427246b5e9a1603c diff --git a/imap/message.h b/imap/message.h index 78c5dc3..525444f 100644 --- a/imap/message.h +++ b/imap/message.h @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - */ + */ /* message.c data structures */ @@ -24,24 +24,22 @@ /* -- data structures -- */ /* IMAP-specific header data, stored as HEADER->data */ -typedef struct imap_header_data -{ - unsigned int uid; /* 32-bit Message UID */ +typedef struct imap_header_data { + unsigned int uid; /* 32-bit Message UID */ LIST *keywords; } IMAP_HEADER_DATA; -typedef struct -{ - unsigned int read : 1; - unsigned int old : 1; - unsigned int deleted : 1; - unsigned int flagged : 1; - unsigned int replied : 1; - unsigned int changed : 1; +typedef struct { + unsigned int read:1; + unsigned int old:1; + unsigned int deleted:1; + unsigned int flagged:1; + unsigned int replied:1; + unsigned int changed:1; unsigned int sid; - IMAP_HEADER_DATA* data; + IMAP_HEADER_DATA *data; time_t received; long content_length;