zwp_keyboard_shortcuts_inhibit_manager.h 729 B

123456789101112131415161718192021
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_EXO_WAYLAND_ZWP_KEYBOARD_SHORTCUTS_INHIBIT_MANAGER_H_
  5. #define COMPONENTS_EXO_WAYLAND_ZWP_KEYBOARD_SHORTCUTS_INHIBIT_MANAGER_H_
  6. #include <stdint.h>
  7. struct wl_client;
  8. namespace exo::wayland {
  9. void bind_keyboard_shortcuts_inhibit_manager(wl_client* client,
  10. void* data,
  11. uint32_t version,
  12. uint32_t id);
  13. } // namespace exo::wayland
  14. #endif // COMPONENTS_EXO_WAYLAND_ZWP_KEYBOARD_SHORTCUTS_INHIBIT_MANAGER_H_