rust/src/test/run-pass/x86stdcall2.rs

43 lines
1.2 KiB
Rust
Raw Normal View History

// Copyright 2012 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.
// pretty-expanded FIXME #23616
2013-03-07 03:09:17 +00:00
pub type HANDLE = u32;
pub type DWORD = u32;
pub type SIZE_T = u32;
pub type LPVOID = uint;
pub type BOOL = u8;
2013-11-10 22:57:53 +00:00
#[cfg(windows)]
mod kernel32 {
2013-03-07 03:09:17 +00:00
use super::{HANDLE, DWORD, SIZE_T, LPVOID, BOOL};
2013-11-10 22:57:53 +00:00
extern "system" {
pub fn GetProcessHeap() -> HANDLE;
pub fn HeapAlloc(hHeap: HANDLE, dwFlags: DWORD, dwBytes: SIZE_T)
-> LPVOID;
pub fn HeapFree(hHeap: HANDLE, dwFlags: DWORD, lpMem: LPVOID) -> BOOL;
}
}
2013-11-10 22:57:53 +00:00
#[cfg(windows)]
pub fn main() {
let heap = unsafe { kernel32::GetProcessHeap() };
let mem = unsafe { kernel32::HeapAlloc(heap, 0, 100) };
assert!(mem != 0);
let res = unsafe { kernel32::HeapFree(heap, 0, mem) };
assert!(res != 0);
}
2013-11-10 22:57:53 +00:00
#[cfg(not(windows))]
pub fn main() { }