All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.ajaxterm.UtilLibrary Maven / Gradle / Ivy

The newest version!
package org.kohsuke.ajaxterm;

import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.ptr.IntByReference;

/**
 * @author Kohsuke Kawaguchi
 */
public interface UtilLibrary extends Library {
    int forkpty(IntByReference master, Pointer _, Pointer termios, Pointer winp);

    public static UtilLibrary LIBUTIL = (UtilLibrary)Native.loadLibrary("util",UtilLibrary.class);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy