]> jfr.im git - solanum.git/blobdiff - include/s_serv.h
Merge pull request #346 from edk0/opmod-as-statusmsg
[solanum.git] / include / s_serv.h
index 4f697dba7392896f149112aff851c39cb118f9ba..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)(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 */
+       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;
 };