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

org.bytedeco.systems.windows.TOKEN_MANDATORY_POLICY Maven / Gradle / Ivy

There is a newer version: 1.5.10
Show newest version
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.systems.windows;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.javacpp.presets.javacpp.*;

import static org.bytedeco.systems.global.windows.*;


@Properties(inherit = org.bytedeco.systems.presets.windows.class)
public class TOKEN_MANDATORY_POLICY extends Pointer {
    static { Loader.load(); }
    /** Default native constructor. */
    public TOKEN_MANDATORY_POLICY() { super((Pointer)null); allocate(); }
    /** Native array allocator. Access with {@link Pointer#position(long)}. */
    public TOKEN_MANDATORY_POLICY(long size) { super((Pointer)null); allocateArray(size); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public TOKEN_MANDATORY_POLICY(Pointer p) { super(p); }
    private native void allocate();
    private native void allocateArray(long size);
    @Override public TOKEN_MANDATORY_POLICY position(long position) {
        return (TOKEN_MANDATORY_POLICY)super.position(position);
    }
    @Override public TOKEN_MANDATORY_POLICY getPointer(long i) {
        return new TOKEN_MANDATORY_POLICY(this).position(position + i);
    }

    public native @Cast("DWORD") int Policy(); public native TOKEN_MANDATORY_POLICY Policy(int setter);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy