summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb/src/context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/cubeb/src/context.rs')
-rw-r--r--third_party/rust/cubeb/src/context.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/cubeb/src/context.rs b/third_party/rust/cubeb/src/context.rs
new file mode 100644
index 0000000000..6b9d8fc03d
--- /dev/null
+++ b/third_party/rust/cubeb/src/context.rs
@@ -0,0 +1,9 @@
+use std::ffi::CString;
+use {Context, Result};
+
+/// Initialize a new cubeb [`Context`]
+pub fn init<T: Into<Vec<u8>>>(name: T) -> Result<Context> {
+ let name = CString::new(name)?;
+
+ Context::init(Some(name.as_c_str()), None)
+}