mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
4b4a6991e3
Avoid the unstable SwiftPM entry point in favor of the stable ABI entry point.
27 lines
882 B
Swift
27 lines
882 B
Swift
/*
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
typealias EntryPoint = @convention(thin) @Sendable (_ configurationJSON: UnsafeRawBufferPointer?, _ recordHandler: @escaping @Sendable (_ recordJSON: UnsafeRawBufferPointer) -> Void) async throws -> Bool
|
|
|
|
@_extern(c, "swt_abiv0_getEntryPoint")
|
|
func swt_abiv0_getEntryPoint() -> UnsafeRawPointer
|
|
|
|
@main struct Runner {
|
|
static func main() async throws {
|
|
let configurationJSON: UnsafeRawBufferPointer? = nil
|
|
let recordHandler: @Sendable (UnsafeRawBufferPointer) -> Void = { _ in }
|
|
|
|
let entryPoint = unsafeBitCast(swt_abiv0_getEntryPoint(), to: EntryPoint.self)
|
|
|
|
if try await entryPoint(configurationJSON, recordHandler) {
|
|
exit(EXIT_SUCCESS)
|
|
} else {
|
|
exit(EXIT_FAILURE)
|
|
}
|
|
}
|
|
}
|