![Sandro Bonazzola](/assets/img/avatar_default.png)
Dropped obsolete Free Software Foundation address pointing to the FSF website instead as suggested by https://www.gnu.org/licenses/gpl-howto.html keeping intact the important part of the historical notice as requested by the license. Resolving rpmlint reported issue E: incorrect-fsf-address. Signed-off-by: Sandro Bonazzola <sbonazzo@redhat.com> Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3155>
57 lines
2.3 KiB
C
57 lines
2.3 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2015 Red Hat
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Written by:
|
|
* Jason Francis <cycl0ps@tuta.io>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
#include "wayland/meta-wayland-xdg-foreign.h"
|
|
|
|
typedef struct _MetaWaylandXdgExported MetaWaylandXdgExported;
|
|
typedef struct _MetaWaylandXdgImported MetaWaylandXdgImported;
|
|
|
|
|
|
typedef void (* MetaWaylandResourceFunc) (struct wl_resource *resource);
|
|
|
|
gboolean meta_wayland_xdg_foreign_is_valid_surface (MetaWaylandSurface *surface,
|
|
struct wl_resource *exporter);
|
|
|
|
MetaWaylandXdgExported * meta_wayland_xdg_foreign_export (MetaWaylandXdgForeign *foreign,
|
|
struct wl_resource *resource,
|
|
MetaWaylandSurface *surface);
|
|
|
|
const char * meta_wayland_xdg_exported_get_handle (MetaWaylandXdgExported *exported);
|
|
|
|
void meta_wayland_xdg_exported_destroy (MetaWaylandXdgExported *exported);
|
|
|
|
MetaWaylandXdgImported * meta_wayland_xdg_foreign_import (MetaWaylandXdgForeign *foreign,
|
|
struct wl_resource *resource,
|
|
const char *handle,
|
|
MetaWaylandResourceFunc send_destroyed_func);
|
|
|
|
void meta_wayland_xdg_imported_set_parent_of (MetaWaylandXdgImported *imported,
|
|
struct wl_resource *surface_resource);
|
|
|
|
void meta_wayland_xdg_imported_destroy (MetaWaylandXdgImported *imported);
|