summaryrefslogtreecommitdiffstats
path: root/third_party/rust/winapi-0.2.8/src/errhandlingapi.rs
blob: fbdde40afa806a8bc9885af354c68c8dc4c5d5ed (plain)
1
2
3
4
5
6
7
// Copyright © 2015, skdltmxn
// Licensed under the MIT License <LICENSE.md>
//! ApiSet Contract for api-ms-win-core-errorhandling-l1
pub type PTOP_LEVEL_EXCEPTION_FILTER = Option<unsafe extern "system" fn(
    ExceptionInfo: *mut ::EXCEPTION_POINTERS,
) -> ::LONG>;
pub type LPTOP_LEVEL_EXCEPTION_FILTER = PTOP_LEVEL_EXCEPTION_FILTER;