Function version

Source
pub fn version() -> String
Expand description

Retrieve libvlc version.

Examples found in repository?
examples/print_version.rs (line 8)
7fn main() {
8    println!("Version : {}", vlc::version());
9    println!("Compiler : {}", vlc::compiler());
10}