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

org.purejava.appindicator.GPrintFunc 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 (*GPrintFunc)(char* string);
 * }
 */
public interface GPrintFunc {

    void apply(java.lang.foreign.MemorySegment display);
    static MemorySegment allocate(GPrintFunc fi, Arena scope) {
        return RuntimeHelper.upcallStub(constants$380.const$2, fi, constants$13.const$1, scope);
    }
    static GPrintFunc ofAddress(MemorySegment addr, Arena arena) {
        MemorySegment symbol = addr.reinterpret(arena, null);
        return (java.lang.foreign.MemorySegment _display) -> {
            try {
                constants$13.const$3.invokeExact(symbol, _display);
            } catch (Throwable ex$) {
                throw new AssertionError("should not reach here", ex$);
            }
        };
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy