de.mkammerer.argon2.jna.Size_t Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of argon2-jvm Show documentation
Show all versions of argon2-jvm Show documentation
Argon2 Binding for the JVM
package de.mkammerer.argon2.jna;
import com.sun.jna.IntegerType;
import com.sun.jna.Native;
/**
* size_t type for C interaction.
*/
public class Size_t extends IntegerType {
/**
* Constructor.
*/
public Size_t() {
this(0);
}
/**
* Constructor.
*
* @param value Value.
*/
public Size_t(long value) {
super(Native.SIZE_T_SIZE, value);
}
}