1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2016-2017 <daggerbot@gmail.com>
// This software is available under the terms of the zlib license.
// See COPYING.md for more information.

#![cfg(windows)]

extern crate kernel32;
#[macro_use]
extern crate log;
extern crate winapi;

mod error;
mod mem;
mod module;

pub use error::{Error, Result, clear_error, set_error};
pub use mem::{Local, LocalSlice};
pub use module::{Module};