Backed out 7 changesets (bug 1942424) for causing frequent crashes. a=backout
[gecko.git] / toolkit / components / bitsdownload / src / lib.rs
blob3b8ef021da86348219d1d7af7f1736b5d3e50de3
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;
14 extern crate comedy;
15 extern crate crossbeam_utils;
16 extern crate libc;
17 extern crate log;
18 extern crate moz_task;
19 extern crate nserror;
20 extern crate nsstring;
21 extern crate xpcom;
23 pub mod bits_interface;