1*581d79a4SPavel Labath //===-- Minidump.cpp - Minidump constants and structures ---------*- C++-*-===// 2*581d79a4SPavel Labath // 3*581d79a4SPavel Labath // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*581d79a4SPavel Labath // See https://llvm.org/LICENSE.txt for license information. 5*581d79a4SPavel Labath // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*581d79a4SPavel Labath // 7*581d79a4SPavel Labath //===----------------------------------------------------------------------===// 8*581d79a4SPavel Labath 9*581d79a4SPavel Labath #include "llvm/BinaryFormat/Minidump.h" 10*581d79a4SPavel Labath 11*581d79a4SPavel Labath using namespace llvm::minidump; 12*581d79a4SPavel Labath 13*581d79a4SPavel Labath constexpr uint32_t Header::MagicSignature; 14*581d79a4SPavel Labath constexpr uint16_t Header::MagicVersion; 15