16 lines
370 B
C++
16 lines
370 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControllerInterface/InputBackend.h"
|
|
|
|
namespace ciface::Quartz
|
|
{
|
|
std::string GetSourceName();
|
|
|
|
std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface);
|
|
} // namespace ciface::Quartz
|