| Structure SilcChannelUser
 
 NAME
 
    typedef struct SilcChannelUserStruct { ... } *SilcChannelUser
DESCRIPTION
    This structure represents a client that has joined to a channel.
    It shows the client and the channel and the client's mode (channel
    user mode) on the channel.
SOURCE    struct SilcChannelUserStruct {
      SilcClientEntry client;                    /* Client joined on channel */
      SilcUInt32 mode;                           /* mode, ChannelUserModes */
      SilcChannelEntry channel;                  /* The channel user has joined */
    
      /* Application specific data.  Application may set here whatever it wants. */
      void *context;
    };
 
 
 
 |