diff options
author | Michal Ratajsky <[email protected]> | 2014-08-29 00:01:41 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-29 00:01:41 +0200 |
commit | 652eb260c2574312664c35acd10893d7a6460426 (patch) | |
tree | e396e048aabc82c589c020f8f2099c27d38ec93d /backends/oss | |
parent | e67e02993cb8c1827659e1b3ddd693d347b8cf96 (diff) | |
download | libmatemixer-652eb260c2574312664c35acd10893d7a6460426.tar.bz2 libmatemixer-652eb260c2574312664c35acd10893d7a6460426.tar.xz |
Include backend flags in backend info and add a flag indicating stored controls support
Diffstat (limited to 'backends/oss')
-rw-r--r-- | backends/oss/oss-backend.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/backends/oss/oss-backend.c b/backends/oss/oss-backend.c index bf9a694..78ed69b 100644 --- a/backends/oss/oss-backend.c +++ b/backends/oss/oss-backend.c @@ -33,6 +33,7 @@ #define BACKEND_NAME "OSS" #define BACKEND_PRIORITY 10 +#define BACKEND_FLAGS MATE_MIXER_BACKEND_NO_FLAGS #if !defined(__linux__) && !defined(__NetBSD__) && !defined(__OpenBSD__) /* At least on systems based on FreeBSD we will need to read device names @@ -114,10 +115,11 @@ backend_module_init (GTypeModule *module) { oss_backend_register_type (module); - info.name = BACKEND_NAME; - info.priority = BACKEND_PRIORITY; - info.g_type = OSS_TYPE_BACKEND; - info.backend_type = MATE_MIXER_BACKEND_OSS; + info.name = BACKEND_NAME; + info.priority = BACKEND_PRIORITY; + info.g_type = OSS_TYPE_BACKEND; + info.backend_flags = BACKEND_FLAGS; + info.backend_type = MATE_MIXER_BACKEND_OSS; } const MateMixerBackendInfo *backend_module_get_info (void) |