Examples of libvlc_event_type_name()


Examples of uk.co.caprica.vlcj.binding.LibVlc.libvlc_event_type_name()

    public static void main(String[] args) {
        LibVlc libvlc = LibVlc.INSTANCE;

        for(libvlc_event_e event : libvlc_event_e.values()) {
            int val = event.intValue();
            System.out.printf("%4d %04x %s%n", val, val, libvlc.libvlc_event_type_name(val));
        }
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.