mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
25 lines
764 B
C++
25 lines
764 B
C++
//===-- sanitizer_win.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Windows-specific declarations.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef SANITIZER_WIN_H
|
|
#define SANITIZER_WIN_H
|
|
|
|
#include "sanitizer_platform.h"
|
|
#if SANITIZER_WINDOWS
|
|
#include "sanitizer_internal_defs.h"
|
|
|
|
namespace __sanitizer {
|
|
// Check based on flags if we should handle the exception.
|
|
bool IsHandledDeadlyException(DWORD exceptionCode);
|
|
} // namespace __sanitizer
|
|
|
|
#endif // SANITIZER_WINDOWS
|
|
#endif // SANITIZER_WIN_H
|