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

org.bytedeco.systems.windows.TRANSACTIONMANAGER_LOG_INFORMATION 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 TRANSACTIONMANAGER_LOG_INFORMATION extends Pointer {
    static { Loader.load(); }
    /** Default native constructor. */
    public TRANSACTIONMANAGER_LOG_INFORMATION() { super((Pointer)null); allocate(); }
    /** Native array allocator. Access with {@link Pointer#position(long)}. */
    public TRANSACTIONMANAGER_LOG_INFORMATION(long size) { super((Pointer)null); allocateArray(size); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public TRANSACTIONMANAGER_LOG_INFORMATION(Pointer p) { super(p); }
    private native void allocate();
    private native void allocateArray(long size);
    @Override public TRANSACTIONMANAGER_LOG_INFORMATION position(long position) {
        return (TRANSACTIONMANAGER_LOG_INFORMATION)super.position(position);
    }
    @Override public TRANSACTIONMANAGER_LOG_INFORMATION getPointer(long i) {
        return new TRANSACTIONMANAGER_LOG_INFORMATION(this).position(position + i);
    }

    public native @ByRef GUID LogIdentity(); public native TRANSACTIONMANAGER_LOG_INFORMATION LogIdentity(GUID setter);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy