Ignore:
Timestamp:
02/12/07 05:52:32 (5 years ago)
Author:
wd
Message:

Get the base/existing IRC module compiling again. Clear out old junk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/modules/ircd/channel.h

    r629 r801  
    9393#define CHANMODE_NOARG      -4 
    9494 
    95 uint64_t chanmode_request(unsigned char, unsigned char *, int, char *, 
    96         char *, size_t, void *); 
     95uint64_t chanmode_request(unsigned char, unsigned char *, int, 
     96        chanmode_func, chanmode_query_func, size_t, void *); 
    9797void chanmode_release(unsigned char); 
     98void chanmode_update_funcs(unsigned char, chanmode_func, 
     99        chanmode_query_func); 
    98100/* ways to set and unset channel modes.  channel modes are typically set by 
    99101 * their mode character, but can also be set by prefix in the case of userflag 
     
    174176                                   the prefix (specified by the caller in extdata). 
    175177                                   no error checking is done on this value. */ 
    176     msymbol_t *changefunc;      /* the symbol/function to change the mode */ 
    177     msymbol_t *queryfunc;      /* the symbol/function to query the mode */ 
     178    chanmode_func changefunc;  /* the symbol/function to change the mode */ 
     179    chanmode_query_func queryfunc; /* the symbol/function to query the mode */ 
    178180    int            flags;       /* flags given for this mode */ 
    179181    struct mdext_item *mdi;     /* the mdext_item which describes the channel mode. 
Note: See TracChangeset for help on using the changeset viewer.