| 33 | void bind_load_torrent(); |
| 34 | |
| 35 | BOOST_PYTHON_MODULE(libtorrent) |
| 36 | { |
| 37 | Py_Initialize(); |
| 38 | |
| 39 | bind_converters(); |
| 40 | bind_unicode_string_conversion(); |
| 41 | bind_error_code(); |
| 42 | bind_utility(); |
| 43 | bind_fingerprint(); |
| 44 | bind_sha1_hash(); |
| 45 | bind_sha256_hash(); |
| 46 | bind_info_hash(); |
| 47 | bind_entry(); |
| 48 | bind_torrent_handle(); |
| 49 | bind_session(); |
| 50 | bind_torrent_info(); |
| 51 | bind_torrent_status(); |
| 52 | bind_session_settings(); |
| 53 | bind_version(); |
| 54 | bind_alert(); |
| 55 | bind_datetime(); |
| 56 | bind_peer_info(); |
| 57 | bind_ip_filter(); |
| 58 | bind_magnet_uri(); |
| 59 | bind_create_torrent(); |
| 60 | bind_load_torrent(); |
| 61 | } |
nothing calls this directly
no test coverage detected