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

de.mkammerer.argon2.jna.Size_t Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy