summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorjavier <javier@pcjavier.(none)>2010-11-07 03:00:56 +0100
committerjavier <javier@pcjavier.(none)>2010-11-07 03:00:56 +0100
commit2ab60ecb15ab1a7e30226563a15bbeec05dda54d (patch)
treec117593d0687b274f66898c9d54b4ea9ffb01e33 /types.h
downloadcfmradio-2ab60ecb15ab1a7e30226563a15bbeec05dda54d.tar.gz
cfmradio-2ab60ecb15ab1a7e30226563a15bbeec05dda54d.zip
initial import
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__ */
+