Files
dolphin/Source/Core/Common/UPnP.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
270 B
C++
Raw Normal View History

// 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