mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
5062ba347b
Re-organize our helper files here a bit, to make a clearer distinction between Qt-specific helpers and generic non-serenity helpers. A future commit will move Lagom specific code from LibSQL to ladybird as well, so that we can see about future generic apis for spawning helper procesess.
22 lines
646 B
C
22 lines
646 B
C
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Error.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Vector.h>
|
|
#include <QString>
|
|
|
|
AK::DeprecatedString ak_deprecated_string_from_qstring(QString const&);
|
|
ErrorOr<String> ak_string_from_qstring(QString const&);
|
|
QString qstring_from_ak_deprecated_string(AK::DeprecatedString const&);
|
|
QString qstring_from_ak_string(String const&);
|
|
void platform_init();
|
|
ErrorOr<Vector<String>> get_paths_for_helper_process(StringView process_name);
|
|
|
|
extern DeprecatedString s_serenity_resource_root;
|