1 // Copyright © 2015, Peter Atashian
2 // Licensed under the MIT License <LICENSE.md>
3 //! ApiSet Contract for api-ms-win-core-heap-l1
4 STRUCT!{struct HEAP_SUMMARY {
5     cb: ::DWORD,
6     cbAllocated: ::SIZE_T,
7     cbCommitted: ::SIZE_T,
8     cbReserved: ::SIZE_T,
9     cbMaxReserve: ::SIZE_T,
10 }}
11 pub type PHEAP_SUMMARY = *mut HEAP_SUMMARY;
12 pub type LPHEAP_SUMMARY = PHEAP_SUMMARY;
13