/* $Id: message_handler.sma 1 2005-04-19 09:41:42Z tilman $ */ #define MSG_ID_SET_SONGNAME 0 public message (Msg_Type:type, id, ...) { switch (id) { case MSG_ID_SET_SONGNAME: { new buf[256], len; if (type != MSG_STRING) return; len = snprintf (buf, 256, "%s", getarg (2)); set_songname (buf, len); } } }