mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
ab600cafd2
Don't let any dangling pointer keeping it alive. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1775>
32 lines
980 B
C
32 lines
980 B
C
/*
|
|
* Clutter.
|
|
*
|
|
* An OpenGL based 'interactive canvas' library.
|
|
*
|
|
* Copyright (C) 2021 Red Hat Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef CLUTTER_SEAT_PRIVATE_H
|
|
#define CLUTTER_SEAT_PRIVATE_H
|
|
|
|
#include "clutter/clutter-types.h"
|
|
|
|
CLUTTER_EXPORT
|
|
void clutter_seat_destroy (ClutterSeat *seat);
|
|
|
|
#endif /* CLUTTER_SEAT_PRIVATE_H */
|