summaryrefslogtreecommitdiffstats
path: root/binding/afm-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'binding/afm-common.h')
-rw-r--r--binding/afm-common.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/binding/afm-common.h b/binding/afm-common.h
new file mode 100644
index 0000000..90d7381
--- /dev/null
+++ b/binding/afm-common.h
@@ -0,0 +1,55 @@
+/*
+ * Copyright (C) 2017 Konsulko Group
+ * Author: Matt Ranostay <matt.ranostay@konsulko.com>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#ifndef _AFM_COMMON_H
+#define _AFM_COMMON_H
+
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <glib.h>
+#include <json-c/json.h>
+
+struct playlist_item {
+ int id;
+ gchar *title;
+ gchar *album;
+ gchar *artist;
+ gint duration;
+ gchar *media_path;
+};
+
+enum {
+ PLAY_CMD = 0,
+ PAUSE_CMD,
+ PREVIOUS_CMD,
+ NEXT_CMD,
+ SEEK_CMD,
+ FASTFORWARD_CMD,
+ REWIND_CMD,
+ PICKTRACK_CMD,
+ NUM_CMDS
+};
+
+const char *control_commands[NUM_CMDS];
+int get_command_index(const char *name);
+GList *find_media_index(GList *list, long int index);
+
+#endif /* _AFM_COMMON_H */