]> git.proxmox.com Git - rustc.git/blob - vendor/winapi-0.2.8/src/excpt.rs
New upstream version 1.39.0+dfsg1
[rustc.git] / vendor / winapi-0.2.8 / src / excpt.rs
1 // Copyright © 2015, Peter Atashian
2 // Licensed under the MIT License <LICENSE.md>
3 ENUM!{enum EXCEPTION_DISPOSITION {
4 ExceptionContinueExecution = 0,
5 ExceptionContinueSearch = 1,
6 ExceptionNestedException = 2,
7 ExceptionCollidedUnwind = 3,
8 }}
9 #[repr(C)] #[derive(Clone, Copy, Debug)]
10 pub struct _EXCEPTION_RECORD;
11 #[repr(C)] #[derive(Clone, Copy, Debug)]
12 pub struct _CONTEXT;
13 #[cfg(target_arch = "x86_64")] #[repr(C)] #[derive(Clone, Copy, Debug)]
14 pub struct _DISPATCHER_CONTEXT;