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

com.microsoft.alm.storage.posix.internal.GLibLibrary Maven / Gradle / Ivy

Go to download

Provides different kind of secure storage for storing secrets generated by the Authentication Library

There is a newer version: 0.6.4
Show newest version
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See License.txt in the project root.

package com.microsoft.alm.storage.posix.internal;

import com.sun.jna.Library;
import com.sun.jna.Native;

/**
 * Only expose one method to set application name to suppress
 * warning: "g_set_application_name not set"
 */
public interface GLibLibrary extends Library {
    GLibLibrary INSTANCE = (GLibLibrary)
            Native.loadLibrary("glib-2.0", GLibLibrary.class);

    void g_set_application_name(final String application_name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy