blob: 1b51a2e1b93d9c048c9a3470815837ecc1c86e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2019 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "Common/Config/Config.h"
namespace ciface::DualShockUDPClient
{
namespace Settings
{
extern const Config::Info<bool> SERVER_ENABLED;
extern const Config::Info<std::string> SERVER_ADDRESS;
extern const Config::Info<int> SERVER_PORT;
} // namespace Settings
void Init();
void PopulateDevices();
void DeInit();
} // namespace ciface::DualShockUDPClient
|