/* * Copyright (c) 2024, Andrew Kaster * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #if !defined(AK_OS_MACH) # error "This file is only available on Mach platforms" #endif #include #include namespace Core::Platform { MachPort register_with_mach_server(ByteString const& server_name); }