fix python binding build with shared linking

This commit is contained in:
Arvid Norberg 2013-10-06 01:30:39 +00:00
parent 5e3a7a77f8
commit a5494f2984
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ POSSIBILITY OF SUCH DAMAGE.
namespace libtorrent
{
TORRENT_EXTRA_EXPORT bool is_alpha(char c);
TORRENT_EXTRA_EXPORT bool is_digit(char c);
// this is used by bdecode_recursive's header file
TORRENT_EXPORT bool is_digit(char c);
TORRENT_EXTRA_EXPORT bool is_print(char c);
TORRENT_EXTRA_EXPORT bool is_space(char c);
TORRENT_EXTRA_EXPORT char to_lower(char c);