wl_shell.h 501 B

1234567891011121314151617181920
  1. // Copyright 2018 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_WL_SHELL_H_
  5. #define COMPONENTS_EXO_WAYLAND_WL_SHELL_H_
  6. #include <stdint.h>
  7. struct wl_client;
  8. namespace exo {
  9. namespace wayland {
  10. void bind_shell(wl_client* client, void* data, uint32_t version, uint32_t id);
  11. } // namespace wayland
  12. } // namespace exo
  13. #endif // COMPONENTS_EXO_WAYLAND_WL_SHELL_H_