]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/x86stdcall2.rs
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / test / run-pass / x86stdcall2.rs
CommitLineData
223e47cc
LB
1// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
9346a6ac
AL
11#![feature(std_misc)]
12
223e47cc
LB
13pub type HANDLE = u32;
14pub type DWORD = u32;
15pub type SIZE_T = u32;
c34b1796 16pub type LPVOID = usize;
223e47cc
LB
17pub type BOOL = u8;
18
1a4d82fc 19#[cfg(windows)]
223e47cc
LB
20mod kernel32 {
21 use super::{HANDLE, DWORD, SIZE_T, LPVOID, BOOL};
22
1a4d82fc 23 extern "system" {
223e47cc
LB
24 pub fn GetProcessHeap() -> HANDLE;
25 pub fn HeapAlloc(hHeap: HANDLE, dwFlags: DWORD, dwBytes: SIZE_T)
26 -> LPVOID;
27 pub fn HeapFree(hHeap: HANDLE, dwFlags: DWORD, lpMem: LPVOID) -> BOOL;
28 }
29}
30
31
1a4d82fc 32#[cfg(windows)]
223e47cc
LB
33pub fn main() {
34 let heap = unsafe { kernel32::GetProcessHeap() };
c34b1796
AL
35 let mem = unsafe { kernel32::HeapAlloc(heap, 0, 100) };
36 assert!(mem != 0);
37 let res = unsafe { kernel32::HeapFree(heap, 0, mem) };
38 assert!(res != 0);
223e47cc
LB
39}
40
1a4d82fc 41#[cfg(not(windows))]
223e47cc 42pub fn main() { }