summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/types.h b/types.h
new file mode 100644
index 0000000..8ecc837
--- /dev/null
+++ b/types.h
@@ -0,0 +1,22 @@
+
+#ifndef __CFMRADIO_TYPES_H__
+#define __CFMRADIO_TYPES_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef enum {
+ CFM_RADIO_OUTPUT_MUTE = 0,
+ CFM_RADIO_OUTPUT_SYSTEM,
+ CFM_RADIO_OUTPUT_SPEAKER,
+ CFM_RADIO_OUTPUT_HEADPHONES
+} CFmRadioOutput;
+
+GType cfm_radio_output_get_type(void) G_GNUC_CONST;
+#define CFM_TYPE_RADIO_OUTPUT (cfm_radio_output_get_type())
+
+G_END_DECLS
+
+#endif /*__CFMRADIO_TYPES_H__ */
+