コード例 #1
0
ファイル: GDBusConnection.go プロジェクト: gotk3/gio
// native returns a pointer to the underlying GDBusConnection.
func (v *DBusConnection) native() *C.GDBusConnection {
	if v == nil || v.GObject == nil {
		return nil
	}
	p := unsafe.Pointer(v.GObject)
	return C.toGDBusConnection(p)
}
コード例 #2
0
ファイル: GDBusConnection.go プロジェクト: gotk3/gio
func (v *DBusConnection) toDBusConnection() *C.GDBusConnection {
	if v == nil {
		return nil
	}
	return C.toGDBusConnection(unsafe.Pointer(v.GObject))
}