mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 08:32:57 +00:00
15 lines
495 B
Rust
15 lines
495 B
Rust
// Copyright © 2015, Peter Atashian
|
|
// Licensed under the MIT License <LICENSE.md>
|
|
ENUM!{enum EXCEPTION_DISPOSITION {
|
|
ExceptionContinueExecution = 0,
|
|
ExceptionContinueSearch = 1,
|
|
ExceptionNestedException = 2,
|
|
ExceptionCollidedUnwind = 3,
|
|
}}
|
|
#[repr(C)] #[derive(Clone, Copy, Debug)]
|
|
pub struct _EXCEPTION_RECORD;
|
|
#[repr(C)] #[derive(Clone, Copy, Debug)]
|
|
pub struct _CONTEXT;
|
|
#[cfg(target_arch = "x86_64")] #[repr(C)] #[derive(Clone, Copy, Debug)]
|
|
pub struct _DISPATCHER_CONTEXT;
|