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