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

ch.cern.mig.posix.LinuxLibC Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package ch.cern.mig.posix;

import com.sun.jna.LastErrorException;

public interface LinuxLibC extends LibC {
    public int __fxstat(int version, int fd, FileStat stat)
            throws LastErrorException;

    public int __lxstat(int version, String path, FileStat stat)
            throws LastErrorException;

    public int __xstat(int version, String path, FileStat stat)
            throws LastErrorException;

    public int __fxstat64(int version, int fd, FileStat stat)
            throws LastErrorException;

    public int __lxstat64(int version, String path, FileStat stat)
            throws LastErrorException;

    public int __xstat64(int version, String path, FileStat stat)
            throws LastErrorException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy