winapi 0.2.8

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