mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-04 20:43:44 -05:00
f5bdfdde1a
Keeps these utilities consistent with the rest of most of the Common library.
17 lines
270 B
C++
17 lines
270 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
namespace Common::UPnP
|
|
{
|
|
void TryPortmapping(u16 port);
|
|
void StopPortmapping();
|
|
} // namespace Common::UPnP
|
|
|
|
#endif
|