1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

//! This crate contains the functionality required in order to both implement
//! and call XPCOM methods from rust code.
//!
//! For documentation on how to implement XPCOM methods, see the documentation
//! for the [`xpcom_macros`](../xpcom_macros) crate.

#![allow(non_snake_case)]
#![allow(non_camel_case_types)]

extern crate libc;
extern crate nsstring;
extern crate nserror;

// re-export the xpcom_macros macro
#[macro_use]
#[allow(unused_imports)]
extern crate xpcom_macros;
#[doc(hidden)]
pub use xpcom_macros::*;

// Helper functions and data structures are exported in the root of the crate.
mod base;
pub use base::*;

mod refptr;
pub use refptr::*;

mod statics;
pub use statics::*;

// XPCOM interface definitions.
pub mod interfaces;

// XPCOM service getters.
pub mod services;

// Implementation details of the xpcom_macros crate.
#[doc(hidden)]
pub mod reexports;