mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
28 lines
780 B
C
28 lines
780 B
C
/*
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if __has_include(<swift/bridging>)
|
|
# include <swift/bridging>
|
|
#else
|
|
# define SWIFT_SELF_CONTAINED
|
|
# define SWIFT_RETURNS_INDEPENDENT_VALUE
|
|
# define SWIFT_SHARED_REFERENCE(retain, release)
|
|
# define SWIFT_IMMORTAL_REFERENCE
|
|
# define SWIFT_UNSAFE_REFERENCE
|
|
# define SWIFT_NAME(name)
|
|
# define SWIFT_CONFORMS_TO_PROTOCOL(protocol)
|
|
# define SWIFT_COMPUTED_PROPERTY
|
|
# define SWIFT_MUTATING
|
|
# define SWIFT_UNCHECKED_SENDABLE
|
|
# define SWIFT_NONCOPYABLE
|
|
# define SWIFT_NONESCAPABLE
|
|
# define SWIFT_ESCAPABLE
|
|
# define SWIFT_ESCAPABLE_IF(...)
|
|
# define SWIFT_RETURNS_RETAINED
|
|
# define SWIFT_RETURNS_UNRETAINED
|
|
#endif
|