Skip to content

Commit

Permalink
Add ffi::c_void on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Sep 5, 2024
1 parent 73f7203 commit 8305867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#[cfg(windows)]
#[cfg(feature = "std")]
pub use std::os::raw::{
c_char, c_int, c_long, c_longlong, c_short, c_uint, c_ulong, c_ulonglong, c_ushort,
c_char, c_int, c_long, c_longlong, c_short, c_uint, c_ulong, c_ulonglong, c_ushort, c_void,
};
#[cfg(not(windows))]
#[cfg(feature = "std")]
Expand Down

0 comments on commit 8305867

Please sign in to comment.