2017-08-07 06:26:01 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
namespace UPnP
|
|
|
|
{
|
|
|
|
void TryPortmapping(u16 port);
|
|
|
|
void StopPortmapping();
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace UPnP
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
#endif
|