]> git.sesse.net Git - vlc/blob - bindings/java-gcj/VlcClient.java
libvlc interface fix and missing toggle_fullscreen method added
[vlc] / bindings / java-gcj / VlcClient.java
1 public class VlcClient {
2
3     public static void main(String[] args) {
4
5         JVLC vlc = new JVLC(args);
6         System.out.println(vlc.getVersion());
7         vlc.addInterface(true, true);
8         vlc.die();
9         vlc.cleanUp();
10     }
11
12 }