1 //===-- sanitizer_win.h -----------------------------------------*- C++ -*-===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // Windows-specific declarations.
10 //===----------------------------------------------------------------------===//
11 #ifndef SANITIZER_WIN_H
12 #define SANITIZER_WIN_H
14 #include "sanitizer_platform.h"
16 #include "sanitizer_internal_defs.h"
18 namespace __sanitizer
{
19 // Check based on flags if we should handle the exception.
20 bool IsHandledDeadlyException(DWORD exceptionCode
);
21 } // namespace __sanitizer
23 #endif // SANITIZER_WINDOWS
24 #endif // SANITIZER_WIN_H