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