aboutsummaryrefslogtreecommitdiffstats
path: root/src/DecoderCommand.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-07-28 13:18:48 +0200
committerMax Kellermann <max@duempel.org>2013-07-28 13:18:48 +0200
commit43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708 (patch)
tree70cd76be89e7aa8c7e92690eeabb331d31abf346 /src/DecoderCommand.hxx
parent2277d143fa4e407bffa9cb169820c9612ebae7a0 (diff)
downloadmpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.tar.gz
mpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.tar.xz
mpd-43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708.zip
decoder_api: convert to C++
Diffstat (limited to 'src/DecoderCommand.hxx')
-rw-r--r--src/DecoderCommand.hxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/DecoderCommand.hxx b/src/DecoderCommand.hxx
new file mode 100644
index 000000000..e6dc26982
--- /dev/null
+++ b/src/DecoderCommand.hxx
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
+ * http://www.musicpd.org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MPD_DECODER_COMMAND_HXX
+#define MPD_DECODER_COMMAND_HXX
+
+enum decoder_command {
+ DECODE_COMMAND_NONE = 0,
+ DECODE_COMMAND_START,
+ DECODE_COMMAND_STOP,
+ DECODE_COMMAND_SEEK
+};
+
+#endif