#Does anyone know where to install dlltool

15 messages · Page 1 of 1 (latest)

languid dove
#

I can't compile a dependency of bevy without it

craggy sphinx
#
The Rust Programming Language Forum

I am trying to write a simple program using Windows API like that: extern crate windows_link; fn main() { windows_link::link!("kernel32.dll" "system" fn SetLastError(code: u32)); windows_link::link!("kernel32.dll" "system" fn GetLastError() -> u32); unsafe { SetLastError(1234); assert_eq!(GetLastError(), 1234);...

craggy sphinx
#

Are you building in MinGW or just directly in Windows?

languid dove
languid dove
languid dove
craggy sphinx
languid dove
craggy sphinx
#

Hmm, not sure then sorry. Maybe make sure you're actually using the windows-gnu toolchain from within MinGW? I haven't ever using that GNU toolchain on Windows and it's definitely not the typical dev environment

languid dove
languid dove
languid dove