mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-19 04:21:19 +01:00
35 lines
961 B
C++
35 lines
961 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "Common/Config/Config.h"
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
|
|
// Main.NetPlay
|
|
|
|
extern const ConfigInfo<std::string> NETPLAY_TRAVERSAL_SERVER;
|
|
extern const ConfigInfo<u16> NETPLAY_TRAVERSAL_PORT;
|
|
extern const ConfigInfo<std::string> NETPLAY_TRAVERSAL_CHOICE;
|
|
extern const ConfigInfo<std::string> NETPLAY_HOST_CODE;
|
|
|
|
extern const ConfigInfo<u16> NETPLAY_HOST_PORT;
|
|
extern const ConfigInfo<std::string> NETPLAY_ADDRESS;
|
|
extern const ConfigInfo<u16> NETPLAY_CONNECT_PORT;
|
|
extern const ConfigInfo<u16> NETPLAY_LISTEN_PORT;
|
|
|
|
extern const ConfigInfo<std::string> NETPLAY_NICKNAME;
|
|
extern const ConfigInfo<std::string> NETPLAY_SELECTED_HOST_GAME;
|
|
extern const ConfigInfo<bool> NETPLAY_USE_UPNP;
|
|
|
|
extern const ConfigInfo<bool> NETPLAY_ENABLE_QOS;
|
|
|
|
} // namespace Config
|