-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config module with two functions in it
Fixes: #128
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//! Configuration file API | ||
//! | ||
//! For now, just contains two functions regarding the global configuration | ||
//! stored as a cache inside alsa-lib. Calling `update_free_global` might help | ||
//! against valgrind reporting memory leaks. | ||
use crate::{alsa}; | ||
use super::error::*; | ||
|
||
pub fn update() -> Result<()> { | ||
acheck!(snd_config_update()).map(|_| ()) | ||
} | ||
|
||
pub fn update_free_global() -> Result<()> { | ||
acheck!(snd_config_update_free_global()).map(|_| ()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters