zcr_secure_output.h 608 B

1234567891011121314151617181920212223
  1. // Copyright 2019 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_ZCR_SECURE_OUTPUT_H_
  5. #define COMPONENTS_EXO_WAYLAND_ZCR_SECURE_OUTPUT_H_
  6. #include <stdint.h>
  7. struct wl_client;
  8. namespace exo {
  9. namespace wayland {
  10. void bind_secure_output(wl_client* client,
  11. void* data,
  12. uint32_t version,
  13. uint32_t id);
  14. } // namespace wayland
  15. } // namespace exo
  16. #endif // COMPONENTS_EXO_WAYLAND_ZCR_SECURE_OUTPUT_H_