2019-09-06 17:09:30 +02:00
|
|
|
// Copyright 2019 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-11-22 15:43:33 -05:00
|
|
|
#pragma once
|
|
|
|
|
2019-10-23 01:49:48 +02:00
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
|
2019-10-26 18:05:16 +02:00
|
|
|
namespace ciface::DualShockUDPClient
|
2019-09-06 17:09:30 +02:00
|
|
|
{
|
2019-10-23 01:49:48 +02:00
|
|
|
namespace Settings
|
|
|
|
{
|
2020-05-02 14:39:40 +02:00
|
|
|
extern const Config::Info<bool> SERVER_ENABLED;
|
|
|
|
extern const Config::Info<std::string> SERVER_ADDRESS;
|
|
|
|
extern const Config::Info<int> SERVER_PORT;
|
2019-10-23 01:49:48 +02:00
|
|
|
} // namespace Settings
|
|
|
|
|
2019-09-06 17:09:30 +02:00
|
|
|
void Init();
|
|
|
|
void PopulateDevices();
|
|
|
|
void DeInit();
|
2019-10-26 18:05:16 +02:00
|
|
|
} // namespace ciface::DualShockUDPClient
|