]> jfr.im git - solanum.git/blobdiff - include/s_serv.h
Fix strip_unprintable on high bit bytes
[solanum.git] / include / s_serv.h
index 04193cb7efc09a662d225c1e1eb8c978be203461..6808c37e9aa786befbd9cf94f869258986a5e3ae 100644 (file)
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
- *
- *  $Id: s_serv.h 1863 2006-08-27 13:40:37Z jilles $
  */
 
 #ifndef INCLUDED_serv_h
 #define INCLUDED_serv_h
 
-#include "config.h"
+#include "defaults.h"
 #include "capability.h"
 
 /*
@@ -56,8 +54,8 @@ extern struct CapabilityIndex *cli_capindex;
 #define CLICAP_FLAGS_REQACK    0x002
 
 struct ClientCapability {
-       int (*visible)(void);                   /* whether or not to display the capability.  set to NULL or true return value = displayed */
-       const char *(*data)(void);              /* any custom data for the capability.  set to NULL or return NULL = no data */
+       bool (*visible)(struct Client *);               /* whether or not to display the capability.  set to NULL or true return value = displayed */
+       const char *(*data)(struct Client *);           /* any custom data for the capability.  set to NULL or return NULL = no data */
        unsigned int flags;
 };