]> git.sesse.net Git - vlc/blob - bindings/java-gcj/VlcClient.java
Update svn:ignore to ignore vlc aliases (e.g. cvlc, rvlc, etc).
[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 }