2017-08-06 23:26:01 -07:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-08-06 23:26:01 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
2023-04-12 14:15:56 -04:00
|
|
|
namespace Common::UPnP
|
2017-08-06 23:26:01 -07:00
|
|
|
{
|
|
|
|
|
void TryPortmapping(u16 port);
|
|
|
|
|
void StopPortmapping();
|
2023-04-12 14:15:56 -04:00
|
|
|
} // namespace Common::UPnP
|
2017-08-06 23:26:01 -07:00
|
|
|
|
|
|
|
|
#endif
|