forked from PsychoticNinja/irssi
irc-completion. /MSG nick completion now gives the nicks in right time order when using multiple irc networks. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@568 dbcabf3a-b0e7-0310-adc4-f8d773084564
18 lines
390 B
C
18 lines
390 B
C
#include "common.h"
|
|
|
|
#define MODULE_NAME "fe-common/irc"
|
|
|
|
typedef struct {
|
|
time_t time;
|
|
char *nick;
|
|
} LAST_MSG_REC;
|
|
|
|
typedef struct {
|
|
GSList *lastmsgs; /* List of nicks who last send you msg */
|
|
} MODULE_SERVER_REC;
|
|
|
|
typedef struct {
|
|
GSList *lastmsgs; /* List of nicks who last send message */
|
|
GSList *lastownmsgs; /* List of nicks who last send message to you */
|
|
} MODULE_CHANNEL_REC;
|