Files
ladybird/Libraries/LibCore/Platform/ProcessStatisticsMach.h
R-Goc 919f44f3a5 LibCore: Explicitly export symbols from LibCore
This patch adds explicit symbol export to LibCore. This leads to about
350 less symbols being exported.
2026-02-26 18:31:57 +01:00

24 lines
453 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/Export.h>
#include <LibCore/Platform/ProcessStatistics.h>
#include <mach/mach.h>
namespace Core::Platform {
CORE_API MachPort register_with_mach_server(ByteString const& server_name);
}