~ubuntu-branches/ubuntu/feisty/irssi/feisty-backports

« back to all changes in this revision

Viewing changes to src/irc/core/channel-rejoin.h

  • Committer: Bazaar Package Importer
  • Author(s): David Pashley
  • Date: 2005-12-10 21:25:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051210212551-5qwm108g7inyu2f2
Tags: upstream-0.8.10
ImportĀ upstreamĀ versionĀ 0.8.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CHANNEL_REJOIN_H
 
2
#define __CHANNEL_REJOIN_H
 
3
 
 
4
typedef struct {
 
5
        char *channel;
 
6
        char *key;
 
7
        unsigned int joining:1;
 
8
} REJOIN_REC;
 
9
 
 
10
void channel_rejoin_init(void);
 
11
void channel_rejoin_deinit(void);
 
12
 
 
13
#endif