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

org.lwjgl.assimp.AIFileTellProcI Maven / Gradle / Ivy

Go to download

A portable Open Source library to import various well-known 3D model formats in a uniform manner.

There is a newer version: 3.3.5
Show newest version
/*
 * 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