mac_util.h 414 B

123456789101112131415161718
  1. // Copyright (c) 2024 Microsoft, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ELECTRON_SHELL_MAC_UTIL_H_
  5. #define ELECTRON_SHELL_MAC_UTIL_H_
  6. #include "base/containers/span.h"
  7. @class NSData;
  8. namespace electron::util {
  9. base::span<const uint8_t> as_byte_span(NSData* data);
  10. } // namespace electron::util
  11. #endif // ELECTRON_SHELL_MAC_UTIL_H_