fix python binding with shared linking
This commit is contained in:
parent
6867b2da3a
commit
d669d94f88
|
@ -135,12 +135,15 @@ namespace libtorrent
|
||||||
TORRENT_EXTRA_EXPORT std::string extension(std::string const& f);
|
TORRENT_EXTRA_EXPORT std::string extension(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT void replace_extension(std::string& f, std::string const& ext);
|
TORRENT_EXTRA_EXPORT void replace_extension(std::string& f, std::string const& ext);
|
||||||
TORRENT_EXTRA_EXPORT bool is_root_path(std::string const& f);
|
TORRENT_EXTRA_EXPORT bool is_root_path(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT std::string parent_path(std::string const& f);
|
// used by create_torrent.hpp
|
||||||
|
TORRENT_EXPORT std::string parent_path(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT bool has_parent_path(std::string const& f);
|
TORRENT_EXTRA_EXPORT bool has_parent_path(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT std::string filename(std::string const& f);
|
// used by create_torrent.hpp
|
||||||
|
TORRENT_EXPORT std::string filename(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT std::string combine_path(std::string const& lhs
|
TORRENT_EXTRA_EXPORT std::string combine_path(std::string const& lhs
|
||||||
, std::string const& rhs);
|
, std::string const& rhs);
|
||||||
TORRENT_EXTRA_EXPORT std::string complete(std::string const& f);
|
// used by create_torrent.hpp
|
||||||
|
TORRENT_EXPORT std::string complete(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT bool is_complete(std::string const& f);
|
TORRENT_EXTRA_EXPORT bool is_complete(std::string const& f);
|
||||||
TORRENT_EXTRA_EXPORT std::string current_working_directory();
|
TORRENT_EXTRA_EXPORT std::string current_working_directory();
|
||||||
#if TORRENT_USE_UNC_PATHS
|
#if TORRENT_USE_UNC_PATHS
|
||||||
|
|
Loading…
Reference in New Issue