2012-12-11 01:32:48 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// 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;
|
2011-11-09 23:27:11 +00:00
|
|
|
|
2013-11-10 22:57:53 +00:00
|
|
|
#[cfg(windows)]
|
2013-03-05 22:42:58 +00:00
|
|
|
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" {
|
2013-03-05 22:42:58 +00:00
|
|
|
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;
|
|
|
|
}
|
2011-11-09 23:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-10 22:57:53 +00:00
|
|
|
#[cfg(windows)]
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2013-01-26 00:58:04 +00:00
|
|
|
let heap = unsafe { kernel32::GetProcessHeap() };
|
2015-03-03 08:42:26 +00:00
|
|
|
let mem = unsafe { kernel32::HeapAlloc(heap, 0, 100) };
|
|
|
|
assert!(mem != 0);
|
|
|
|
let res = unsafe { kernel32::HeapFree(heap, 0, mem) };
|
|
|
|
assert!(res != 0);
|
2011-11-09 23:27:11 +00:00
|
|
|
}
|
|
|
|
|
2013-11-10 22:57:53 +00:00
|
|
|
#[cfg(not(windows))]
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() { }
|