Skip to content
Snippets Groups Projects
Select Git revision
  • e24ecbe387b994a4455aa7af6195bf411374162e
  • develop default protected
  • master protected
  • feature/scrollbars
  • native-audio
  • v7.3.0
  • v7.2.0
  • v7.1.0
  • v7.0.2
  • v7.0.1
  • v7.0.0
  • v5.0.1
  • v5.1.0
  • v6.1.0
  • v6.0.0
15 results

NativeAudio.java

Blame
  • NativeAudio.java 499 B
    package de.tobias.playpad;
    
    public class NativeAudio {
    
    	public static native void play(int id);
    
    	public static native void pause(int id);
    
    	public static native void stop(int id);
    
    	public static native double getVolume(int id);
    	
    	public static native void setVolume(int id, double volume);
    
    	public static native void load(int id, String path);
    
    	public static native void dispose(int id);
    
    	public static native double getDuration(int id);
    	
    	public static native double getPosition(int id);
    }