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

org.purejava.appindicator.GInstanceInitFunc Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
// Generated by jextract

package org.purejava.appindicator;

import java.lang.foreign.Arena;
import java.lang.foreign.MemorySegment;
/**
 * {@snippet :
 * void (*GInstanceInitFunc)(struct _GTypeInstance* instance,void* g_class);
 * }
 */
public interface GInstanceInitFunc {

    void apply(java.lang.foreign.MemorySegment tag, java.lang.foreign.MemorySegment data);
    static MemorySegment allocate(GInstanceInitFunc fi, Arena scope) {
        return RuntimeHelper.upcallStub(constants$552.const$3, fi, constants$13.const$4, scope);
    }
    static GInstanceInitFunc ofAddress(MemorySegment addr, Arena arena) {
        MemorySegment symbol = addr.reinterpret(arena, null);
        return (java.lang.foreign.MemorySegment _tag, java.lang.foreign.MemorySegment _data) -> {
            try {
                constants$14.const$0.invokeExact(symbol, _tag, _data);
            } catch (Throwable ex$) {
                throw new AssertionError("should not reach here", ex$);
            }
        };
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy