summaryrefslogtreecommitdiff
path: root/types.h
blob: 8ecc837c733bcd314eef7c3cdb50ce4abb580e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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__ */