org.lwjgl.llvm.IndexerAbortQueryI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-llvm Show documentation
Show all versions of lwjgl-llvm Show documentation
A collection of modular and reusable compiler and toolchain technologies.
The newest version!
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.llvm;
import org.lwjgl.system.*;
import org.lwjgl.system.libffi.*;
import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.libffi.LibFFI.*;
/**
* Instances of this interface may be set to the {@code abortQuery} field of the {@link IndexerCallbacks} struct.
*
* Type
*
*
* int (*{@link #invoke}) (
* CXClientData client_data,
* void *reserved
* )
*/
@FunctionalInterface
@NativeType("int (*) (CXClientData, void *)")
public interface IndexerAbortQueryI extends CallbackI {
FFICIF CIF = apiCreateCIF(
FFI_DEFAULT_ABI,
ffi_type_uint32,
ffi_type_pointer, ffi_type_pointer
);
@Override
default FFICIF getCallInterface() { return CIF; }
@Override
default void callback(long ret, long args) {
int __result = invoke(
memGetAddress(memGetAddress(args)),
memGetAddress(memGetAddress(args + POINTER_SIZE))
);
apiClosureRet(ret, __result);
}
/** The {@code IndexerCallbacks.abortQuery} callback. */
int invoke(@NativeType("CXClientData") long client_data, @NativeType("void *") long reserved);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy