diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-11 13:34:39 +0200 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-11 13:34:39 +0200 | 
| commit | 70ac4771ebf3358d7bec9bd6fe37cde4c23223bc (patch) | |
| tree | 579cce153611c9dca6c132a4b56ac3293753d700 /protocols/msn/msn.h | |
| parent | 52663546cc019ebdf4a7d56f1425408e20e1d4cb (diff) | |
Create new MSN groups when necessary.
Diffstat (limited to 'protocols/msn/msn.h')
| -rw-r--r-- | protocols/msn/msn.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/protocols/msn/msn.h b/protocols/msn/msn.h index e4abcb60..59036e37 100644 --- a/protocols/msn/msn.h +++ b/protocols/msn/msn.h @@ -69,7 +69,7 @@ struct msn_data  	int trId; -	GSList *msgq; +	GSList *msgq, *grpq;  	GSList *switchboards;  	int sb_failures;  	time_t first_sb_failure; @@ -120,6 +120,12 @@ struct msn_message  	char *text;  }; +struct msn_groupadd +{ +	char *who; +	char *group; +}; +  struct msn_handler_data  {  	int fd;  | 
