Common/UPnP: Move interface into Common namespace

Keeps these utilities consistent with the rest of most of the Common
library.
This commit is contained in:
Lioncash
2023-04-12 14:15:56 -04:00
parent c5bbe0af02
commit f5bdfdde1a
3 changed files with 6 additions and 6 deletions

View File

@ -7,10 +7,10 @@
#include "Common/CommonTypes.h"
namespace UPnP
namespace Common::UPnP
{
void TryPortmapping(u16 port);
void StopPortmapping();
} // namespace UPnP
} // namespace Common::UPnP
#endif