jnr.posix.FileTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
The newest version!
package jnr.posix;
import jnr.ffi.Struct;
public class FileTime extends Struct {
public final Unsigned32 dwLowDateTime = new Unsigned32();
public final Unsigned32 dwHighDateTime = new Unsigned32();
FileTime(jnr.ffi.Runtime runtime) {
super(runtime);
}
}