1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /*
3  * Utilities for use with libxkbcommon
4  *
5  * Copyright 2020 Red Hat, Inc.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef META_KEYMAP_UTILS_H
22 #define META_KEYMAP_UTILS_H
23 
24 #include <xkbcommon/xkbcommon.h>
25 
26 struct xkb_context * meta_create_xkb_context (void);
27 
28 #endif /* META_KEYMAP_UTILS_H */
29