9 stable releases
1.0.8 | Sep 14, 2020 |
---|---|
1.0.6 | Jun 22, 2020 |
1.0.2 | Jun 21, 2020 |
#125 in Windows APIs
3,946 downloads per month
84KB
2K
SLoC
wepoll-sys-stjepang (a fork of wepoll-sys)
wepoll-sys-stjepang provides Rust bindings to wepoll, generated using bindgen. The wepoll library is included in this crate and compiled automatically, removing the need for manually installing it.
Requirements
- Rust 2018
- Windows
- clang
- A compiler such as gcc, the MSVC compiler (
cl.exe
), etc
Usage
Add wepoll-sys-stjepang as a Windows dependency (since it won't build on other platforms):
[dependencies.'cfg(windows)'.dependencies]
wepoll-sys-stjepang = "1.0"
Since this crate just provides a generated wrapper around the wepoll library, usage is the same as with the C code. For example:
use wepoll_sys_stjepang;
fn main() {
let wepoll = wepoll_sys_stjepang::epoll_create(1);
if wepoll.is_null() {
panic!("epoll_create(1) failed!");
}
// ...
}
Dependencies
~0–300KB