mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-02 11:18:14 -05:00
17 lines
311 B
C++
17 lines
311 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/polyfill_thread.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::VI {
|
|
|
|
void LoopProcess(Core::System& system, std::stop_token token);
|
|
|
|
} // namespace Service::VI
|