1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 //! This crate is meant to be used in Windows only. It provides the
6 //! bits_interface module, which implements the nsIBits an nsIBitsRequest
7 //! XPCOM interfaces. These interfaces allow usage of the Windows component:
8 //! BITS (Background Intelligent Transfer Service). Further documentation can
9 //! be found in the XPCOM interface definition, located in nsIBits.idl
11 #![cfg(target_os = "windows")]
13 extern crate bits_client;
15 extern crate crossbeam_utils;
18 extern crate moz_task;
20 extern crate nsstring;
23 pub mod bits_interface;