decklink

Function api_version

Source
pub fn api_version() -> Result<String, SdkError>
Expand description

Fetch the api version of the installed Decklink drivers.

If an error is returned, the drivers were not found on this system.

ยงExamples

use decklink::api_version;
let version = api_version().unwrap();
println!("Version: {0}", version);