![JAR search and dependency download from the Maven repository](/logo.png)
org.lwjgl.glfw.GLFWDropCallbackI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-glfw Show documentation
Show all versions of lwjgl-glfw Show documentation
An multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.glfw;
import org.lwjgl.system.*;
import static org.lwjgl.system.dyncall.DynCallback.*;
/** Instances of this interface may be passed to the {@link GLFW#glfwSetDropCallback SetDropCallback} method. */
@FunctionalInterface
public interface GLFWDropCallbackI extends CallbackI.V {
String SIGNATURE = "(pip)v";
@Override
default String getSignature() { return SIGNATURE; }
@Override
default void callback(long args) {
invoke(
dcbArgPointer(args),
dcbArgInt(args),
dcbArgPointer(args)
);
}
/**
* Will be called when one or more dragged files are dropped on the window.
*
* @param window the window that received the event
* @param count the number of dropped files
* @param names pointer to the array of UTF-8 encoded path names of the dropped files
*/
void invoke(long window, int count, long names);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy