org.lwjgl.assimp.AIFileFlushProcI 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 aiFile *pFile
* )
*/
@FunctionalInterface
@NativeType("aiFileFlushProc")
public interface AIFileFlushProcI extends CallbackI.V {
String SIGNATURE = "(p)v";
@Override
default String getSignature() { return SIGNATURE; }
@Override
default void callback(long args) {
invoke(
dcbArgPointer(args)
);
}
/**
* File flush procedure.
*
* @param pFile File pointer to flush
*/
void invoke(@NativeType("struct aiFile *") long pFile);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy