mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2026-05-12 02:10:52 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::SSL {
|
|
|
|
void LoopProcess(Core::System& system);
|
|
|
|
} // namespace Service::SSL
|