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

com.mindoo.domino.jna.internal.structs.QueueEntryHeader64 Maven / Gradle / Ivy

There is a newer version: 0.9.53
Show newest version
package com.mindoo.domino.jna.internal.structs;
import java.util.Arrays;
import java.util.List;

import com.sun.jna.Pointer;
import com.sun.jna.Structure;
/**
 * This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA. */ public class QueueEntryHeader64 extends BaseStructure { /** C type : DHANDLE */ public long NextEntry; /** C type : DHANDLE */ public long PrevEntry; public QueueEntryHeader64() { super(); } protected List getFieldOrder() { return Arrays.asList("NextEntry", "PrevEntry"); } /** * @param NextEntry C type : DHANDLE
* @param PrevEntry C type : DHANDLE */ public QueueEntryHeader64(long NextEntry, long PrevEntry) { super(); this.NextEntry = NextEntry; this.PrevEntry = PrevEntry; } public QueueEntryHeader64(Pointer peer) { super(peer); } public static class ByReference extends QueueEntryHeader64 implements Structure.ByReference { }; public static class ByValue extends QueueEntryHeader64 implements Structure.ByValue { }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy