blob: 5545097ec1434e91b9901e4cd9e035199785db43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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
|