org.lwjgl.assimp.AIFileCloseProcI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-assimp Show documentation
Show all versions of lwjgl-assimp Show documentation
A portable Open Source library to import various well-known 3D model formats in a uniform manner.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.assimp;
import org.lwjgl.system.*;
import static org.lwjgl.system.dyncall.DynCallback.*;
/**
* Type
*
*
* void (*) (
* struct aiFileIO *pFileIO,
* struct aiFile *pFile
* )
*/
@FunctionalInterface
@NativeType("aiFileCloseProc")
public interface AIFileCloseProcI extends CallbackI.V {
String SIGNATURE = "(pp)v";
@Override
default String getSignature() { return SIGNATURE; }
@Override
default void callback(long args) {
invoke(
dcbArgPointer(args),
dcbArgPointer(args)
);
}
/**
* File close procedure
*
* @param pFileIO FileIO system pointer
* @param pFile File pointer to close
*/
void invoke(@NativeType("struct aiFileIO *") long pFileIO, @NativeType("struct aiFile *") long pFile);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy