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

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

There is a newer version: 2.11
Show newest version
package de.mkammerer.argon2.jna;

import com.sun.jna.IntegerType;

/**
 * uint32_t type for C interaction.
 */
public class JnaUint32 extends IntegerType {
    /**
     * Constructor.
     */
    public JnaUint32() {
        this(0);
    }

    /**
     * Constructor.
     *
     * @param value Value.
     */
    public JnaUint32(int value) {
        super(4, value, true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy