2014-09-29 18:34:53 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-07-23 02:14:42 +00:00
|
|
|
#![feature(libc)]
|
2015-03-06 02:33:58 +00:00
|
|
|
|
2014-09-25 20:01:32 +00:00
|
|
|
extern crate libc;
|
|
|
|
|
2014-09-29 18:34:53 +00:00
|
|
|
#[cfg(windows)]
|
|
|
|
mod imp {
|
2015-11-03 00:23:22 +00:00
|
|
|
type LPVOID = *mut u8;
|
|
|
|
type DWORD = u32;
|
|
|
|
type LPWSTR = *mut u16;
|
2014-09-29 18:34:53 +00:00
|
|
|
|
|
|
|
extern "system" {
|
|
|
|
fn FormatMessageW(flags: DWORD,
|
|
|
|
lpSrc: LPVOID,
|
|
|
|
msgId: DWORD,
|
|
|
|
langId: DWORD,
|
|
|
|
buf: LPWSTR,
|
|
|
|
nsize: DWORD,
|
2015-11-03 00:23:22 +00:00
|
|
|
args: *const u8)
|
2014-09-29 18:34:53 +00:00
|
|
|
-> DWORD;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test() {
|
2014-12-20 02:20:51 +00:00
|
|
|
let mut buf: [u16; 50] = [0; 50];
|
2014-09-29 18:34:53 +00:00
|
|
|
let ret = unsafe {
|
2015-11-03 00:23:22 +00:00
|
|
|
FormatMessageW(0x1000, 0 as *mut _, 1, 0x400,
|
|
|
|
buf.as_mut_ptr(), buf.len() as u32, 0 as *const _)
|
2014-09-29 18:34:53 +00:00
|
|
|
};
|
2014-10-09 19:17:22 +00:00
|
|
|
// On some 32-bit Windowses (Win7-8 at least) this will panic with segmented
|
2014-09-29 18:34:53 +00:00
|
|
|
// stacks taking control of pvArbitrary
|
|
|
|
assert!(ret != 0);
|
|
|
|
}
|
2014-09-25 20:01:32 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 18:34:53 +00:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
mod imp {
|
|
|
|
pub fn test() { }
|
2014-09-25 20:01:32 +00:00
|
|
|
}
|
2014-09-29 18:34:53 +00:00
|
|
|
|
2014-09-25 20:01:32 +00:00
|
|
|
fn main() {
|
2014-09-29 18:34:53 +00:00
|
|
|
imp::test()
|
|
|
|
}
|