native-tools/src/win_c.rs

10 lines
201 B
Rust

#![allow(non_camel_case_types)]
use libc::{c_void, c_int, c_ulong};
pub type DWORD = c_ulong;
pub type HANDLE = LPVOID;
pub type LPVOID = *mut c_void;
pub type BOOL = c_int;
pub type SIZE_T = usize;