diff mcabber/src/hooks.h @ 281:f562b9af2de7

Add "const" specifier in prototypes It's easier then to know when variables are read-only (and shouldn't be freed).
author Mikael Berthe <mikael@lilotux.net>
date Wed, 06 Jul 2005 22:18:05 +0100
parents 73f6ce668ba8
children 45076d02eeef 33b8e801ffa6
line wrap: on
line diff
--- a/mcabber/src/hooks.h	Wed Jul 06 21:28:37 2005 +0100
+++ b/mcabber/src/hooks.h	Wed Jul 06 22:18:05 2005 +0100
@@ -12,7 +12,7 @@
 inline void hk_mystatuschange(time_t timestamp,
         enum imstatus old_status, enum imstatus new_status);
 
-void hk_ext_cmd_init(char *command);
+void hk_ext_cmd_init(const char *command);
 void hk_ext_cmd(const char *jid, guchar type, guchar info, const char *data);
 
 #endif /* __HOOKS_H__ */