Added g_object_ref_sink

This commit is contained in:
nathan 2015-11-10 01:07:02 +01:00
parent c8787402da
commit 05fec1c211

View File

@ -26,7 +26,6 @@ public
interface Gobject extends Library {
Gobject INSTANCE = (Gobject) Native.loadLibrary("gobject-2.0", Gobject.class);
@Keep
class GTypeClassStruct extends Structure {
public
@ -163,6 +162,7 @@ interface Gobject extends Library {
void g_free(Pointer object);
void g_object_unref(Pointer object);
void g_object_ref_sink(Pointer object);
NativeLong g_signal_connect_data(Pointer instance, String detailed_signal, Callback c_handler, Pointer data, Pointer destroy_data,
int connect_flags);