premiere-libtorrent/test/setup_transfer.hpp

15 lines
350 B
C++
Raw Normal View History

#ifndef SETUP_TRANSFER_HPP
#define SETUP_TRANSFER_HPP
#include "libtorrent/session.hpp"
#include <boost/tuple/tuple.hpp>
void sleep(int msec);
boost::tuple<libtorrent::torrent_handle, libtorrent::torrent_handle>
setup_transfer(libtorrent::session& ses1, libtorrent::session& ses2
2007-06-06 02:41:20 +02:00
, bool clear_files, bool use_metadata_transfer = true);
#endif