]> git.proxmox.com Git - rustc.git/blame - src/vendor/winapi/src/heapapi.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / vendor / winapi / src / heapapi.rs
CommitLineData
8bb4bdeb
XL
1// Copyright © 2015, Peter Atashian
2// Licensed under the MIT License <LICENSE.md>
3//! ApiSet Contract for api-ms-win-core-heap-l1
4STRUCT!{struct HEAP_SUMMARY {
5 cb: ::DWORD,
6 cbAllocated: ::SIZE_T,
7 cbCommitted: ::SIZE_T,
8 cbReserved: ::SIZE_T,
9 cbMaxReserve: ::SIZE_T,
10}}
11pub type PHEAP_SUMMARY = *mut HEAP_SUMMARY;
12pub type LPHEAP_SUMMARY = PHEAP_SUMMARY;