mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
22 lines
416 B
C++
22 lines
416 B
C++
/*
|
|
* Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
|
|
#if !defined(AK_OS_MACH)
|
|
# error "This file is only available on Mach platforms"
|
|
#endif
|
|
|
|
#include <LibCore/Platform/ProcessStatistics.h>
|
|
#include <mach/mach.h>
|
|
|
|
namespace Core::Platform {
|
|
|
|
MachPort register_with_mach_server(ByteString const& server_name);
|
|
|
|
}
|