diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-09-20 17:52:53 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-09-20 17:52:53 +0200 |
commit | f51ace4c7885fa25c146c24181c4d87f5632de3e (patch) | |
tree | fa22f137deaabbc99c2f7bbeb1958b07ab7c2949 /src/api/x11/ffi.rs | |
parent | 907d7621bc9822c2688d1783a5805f8532a92b42 (diff) | |
parent | 82bb047fda3912489d024dbf40613168ded50527 (diff) | |
download | glutin-f51ace4c7885fa25c146c24181c4d87f5632de3e.tar.gz glutin-f51ace4c7885fa25c146c24181c4d87f5632de3e.zip |
Merge pull request #602 from tomaka/api-dispatch-error
[Breaking change] Better error handling in Linux's api dispatch
Diffstat (limited to 'src/api/x11/ffi.rs')
-rw-r--r-- | src/api/x11/ffi.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/x11/ffi.rs b/src/api/x11/ffi.rs index 3d4f0ed..465aa95 100644 --- a/src/api/x11/ffi.rs +++ b/src/api/x11/ffi.rs @@ -5,6 +5,8 @@ pub use x11_dl::xlib::*; pub use x11_dl::xinput::*; pub use x11_dl::xinput2::*; +pub use x11_dl::error::OpenError; + pub use self::glx::types::GLXContext; /// GLX bindings |