Ignore:
Timestamp:
2015-02-20T22:50:54Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
0b9daac, 3d45471, 7733b8c
Parents:
af359b4
git-author:
Indent <please@…> (19-02-15 05:47:20)
git-committer:
dequis <dx@…> (20-02-15 22:50:54)
Message:

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/im.h

    raf359b4 r5ebff60  
    66/*
    77 * SNAC Family: Messaging Services.
    8  */ 
     8 */
    99#define AIM_CB_MSG_ERROR 0x0001
    1010#define AIM_CB_MSG_PARAMINFO 0x0005
     
    1717#define AIM_CB_MSG_DEFAULT 0xffff
    1818
    19 #define AIM_IMFLAGS_AWAY                0x0001 /* mark as an autoreply */
    20 #define AIM_IMFLAGS_ACK                 0x0002 /* request a receipt notice */
    21 #define AIM_IMFLAGS_UNICODE             0x0004
    22 #define AIM_IMFLAGS_ISO_8859_1          0x0008
    23 #define AIM_IMFLAGS_BUDDYREQ            0x0010 /* buddy icon requested */
    24 #define AIM_IMFLAGS_HASICON             0x0020 /* already has icon */
    25 #define AIM_IMFLAGS_SUBENC_MACINTOSH    0x0040 /* damn that Steve Jobs! */
    26 #define AIM_IMFLAGS_CUSTOMFEATURES      0x0080 /* features field present */
    27 #define AIM_IMFLAGS_EXTDATA             0x0100
    28 #define AIM_IMFLAGS_CUSTOMCHARSET       0x0200 /* charset fields set */
    29 #define AIM_IMFLAGS_MULTIPART           0x0400 /* ->mpmsg section valid */
    30 #define AIM_IMFLAGS_OFFLINE             0x0800 /* send to offline user */
     19#define AIM_IMFLAGS_AWAY                0x0001 /* mark as an autoreply */
     20#define AIM_IMFLAGS_ACK                 0x0002 /* request a receipt notice */
     21#define AIM_IMFLAGS_UNICODE             0x0004
     22#define AIM_IMFLAGS_ISO_8859_1          0x0008
     23#define AIM_IMFLAGS_BUDDYREQ            0x0010 /* buddy icon requested */
     24#define AIM_IMFLAGS_HASICON             0x0020 /* already has icon */
     25#define AIM_IMFLAGS_SUBENC_MACINTOSH    0x0040 /* damn that Steve Jobs! */
     26#define AIM_IMFLAGS_CUSTOMFEATURES      0x0080 /* features field present */
     27#define AIM_IMFLAGS_EXTDATA             0x0100
     28#define AIM_IMFLAGS_CUSTOMCHARSET       0x0200 /* charset fields set */
     29#define AIM_IMFLAGS_MULTIPART           0x0400 /* ->mpmsg section valid */
     30#define AIM_IMFLAGS_OFFLINE             0x0800 /* send to offline user */
    3131
    3232/*
     
    8484/*
    8585 * This information is provided in the Incoming ICBM callback for
    86  * Channel 1 ICBM's. 
     86 * Channel 1 ICBM's.
    8787 *
    8888 * Note that although CUSTOMFEATURES and CUSTOMCHARSET say they
     
    100100        aim_mpmsg_t mpmsg;
    101101        guint32 icbmflags; /* some flags apply only to ->msg, not all mpmsg */
    102        
     102
    103103        /* Only provided if message has a human-readable section */
    104104        char *msg;
     
    179179
    180180int aim_im_sendmtn(aim_session_t *sess, guint16 type1, const char *sn, guint16 type2);
    181 int aim_send_im_ch2_statusmessage(aim_session_t *sess, const char *sender, const guint8 *cookie, const char *message, const guint8 state, const guint16 dc);
     181int aim_send_im_ch2_statusmessage(aim_session_t *sess, const char *sender, const guint8 *cookie, const char *message,
     182                                  const guint8 state, const guint16 dc);
    182183
    183184#endif /* __OSCAR_IM_H__ */
Note: See TracChangeset for help on using the changeset viewer.