summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-10-15 21:22:25 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-10-15 21:22:25 +0200
commit44e8d9cee54a24367d25410f78aa10d479eda572 (patch)
treec437d8ee3ab88797c6c6cc1928e6b756fc4045c0 /src/lib.rs
parent8fd6dd041fddaedfadd2e5aa4b6072ef7e106393 (diff)
Moved emscripten APIs to their own module and added stubs for other methods
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3331f72..b053e0c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,3 +11,6 @@ pub mod gui;
extern crate portaudio;
#[cfg(not(target_os = "emscripten"))]
pub mod audio;
+
+#[cfg(target_os = "emscripten")]
+pub mod emscripten_api;