I found this part in App_Server.cpp...
//<-dceag-c89-b->
/** @brief COMMAND: #89 - Vol Up */
/** Increase the volume 1% */
/** @param #72 Repeat Command */
/** If specified, repeat the volume up this many times */
void App_Server::CMD_Vol_Up(int iRepeat_Command,string &sCMD_Result,Message *pMessage)
//<-dceag-c89-e->
I now understand that // is to comment lines out. Could I alter the above like this...
//<-dceag-c89-b->
/** @brief COMMAND: #89 - Vol Up */
/** Increase the volume 1% */
/** @param #72 Repeat Command */
/** If specified, repeat the volume up this many times */
void App_Server::CMD_Vol_Up(int iRepeat_Command,string &sCMD_Result,Message *pMessage)
void App_Server::CMD_Vol_Up(int iRepeat_Command,string &sCMD_Result,Message *pMessage)
void App_Server::CMD_Vol_Up(int iRepeat_Command,string &sCMD_Result,Message *pMessage)
void App_Server::CMD_Vol_Up(int iRepeat_Command,string &sCMD_Result,Message *pMessage)
//<-dceag-c89-e->
Or am I in the wrong area?