Last change
on this file was
14724,
checked in by jordan, 5 years ago
|
use '#pragma once' instead of #ifndef..#define..#endif guards
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
549 bytes
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2007-2014 Mnemosyne LLC |
---|
3 | * |
---|
4 | * It may be used under the GNU GPL versions 2 or 3 |
---|
5 | * or any future license endorsed by Mnemosyne LLC. |
---|
6 | * |
---|
7 | * $Id: natpmp_local.h 14724 2016-03-29 16:37:21Z mikedld $ |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef __TRANSMISSION__ |
---|
11 | #error only libtransmission should #include this header. |
---|
12 | #endif |
---|
13 | |
---|
14 | #pragma once |
---|
15 | |
---|
16 | /** |
---|
17 | * @addtogroup port_forwarding Port Forwarding |
---|
18 | * @{ |
---|
19 | */ |
---|
20 | |
---|
21 | typedef struct tr_natpmp tr_natpmp; |
---|
22 | |
---|
23 | tr_natpmp * tr_natpmpInit (void); |
---|
24 | |
---|
25 | void tr_natpmpClose (tr_natpmp *); |
---|
26 | |
---|
27 | int tr_natpmpPulse (tr_natpmp *, tr_port port, bool isEnabled, tr_port * public_port); |
---|
28 | |
---|
29 | /* @} */ |
---|
Note: See
TracBrowser
for help on using the repository browser.