com.microsoft.alm.storage.posix.internal.GLibLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth-secure-storage Show documentation
Show all versions of auth-secure-storage Show documentation
Provides different kind of secure storage for storing secrets generated by the Authentication Library
// 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