| SilcAttributeMood
 
 NAME
 
    typedef enum { ... } SilcAttributeMood;
DESCRIPTION
    The user mood indicators defined by the specification.  This is
    bit mask.
SOURCE    typedef enum {
      SILC_ATTRIBUTE_MOOD_NORMAL      = 0x00000000,   /* normal mood */
      SILC_ATTRIBUTE_MOOD_HAPPY       = 0x00000001,   /* user feel happy */
      SILC_ATTRIBUTE_MOOD_SAD         = 0x00000002,   /* user feel sad */
      SILC_ATTRIBUTE_MOOD_ANGRY       = 0x00000004,   /* user feel angry */
      SILC_ATTRIBUTE_MOOD_JEALOUS     = 0x00000008,   /* user feel jealous */
      SILC_ATTRIBUTE_MOOD_ASHAMED     = 0x00000010,   /* user feel ashamed */
      SILC_ATTRIBUTE_MOOD_INVINCIBLE  = 0x00000020,   /* user feel invincible */
      SILC_ATTRIBUTE_MOOD_INLOVE      = 0x00000040,   /* user feel in love */
      SILC_ATTRIBUTE_MOOD_SLEEPY      = 0x00000080,   /* user feel sleepy */
      SILC_ATTRIBUTE_MOOD_BORED       = 0x00000100,   /* user feel bored */
      SILC_ATTRIBUTE_MOOD_EXCITED     = 0x00000200,   /* user feel exited */
      SILC_ATTRIBUTE_MOOD_ANXIOUS     = 0x00000400,   /* user feel anxious */
    } SilcAttributeMood;
 
 
 
 |