]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/commands/cmd_input.hpp
FSF address change.
[vlc] / modules / gui / skins2 / commands / cmd_input.hpp
index 3bc19cc54e785eb439745b13ac6527d52994d0c4..7a9dcf04595d705571132d221e0823edc98e51f5 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * cmd_input.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: cmd_input.hpp,v 1.3 2004/01/25 17:20:18 kuehne Exp $
+ * Copyright (C) 2003 the VideoLAN team
+ * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  *          Olivier Teulière <ipkiss@via.ecp.fr>
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef CMD_INPUT_HPP
 #include "cmd_generic.hpp"
 
 /// Commands to control the input
-DEFINE_COMMAND( Play, "Play" ) 
+DEFINE_COMMAND( Play, "play" )
 DEFINE_COMMAND( Pause, "pause" )
-DEFINE_COMMAND( Stop, "Stop" ) 
+DEFINE_COMMAND( Stop, "stop" )
 DEFINE_COMMAND( Slower, "slower" )
 DEFINE_COMMAND( Faster, "faster" )
+DEFINE_COMMAND( Mute, "mute" )
+DEFINE_COMMAND( VolumeUp, "volume up" )
+DEFINE_COMMAND( VolumeDown, "volume down" )
 
 
 #endif