mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:32:10 +08:00
4c4e67952c
This corresponds to Windows 10 version 1709 (Fall Creators Update, “Redstone 3”). While compiling util/win/nt_internals.cc: …\crashpad\crashpad\util\win\nt_internals.cc(22): error C2371: 'CLIENT_ID': redefinition; different basic types c:\program files (x86)\windows kits\10\include\10.0.16299.0\um\winternl.h(83): note: see declaration of 'CLIENT_ID' The CLIENT_ID structure, which should have been part of the SDK to begin with, has been added. Provide a compatible definition in <winternl.h>. Bug: chromium:773476 Change-Id: Iafc77f8cffd06d1194fc909bad587f1ffd1687a2 Reviewed-on: https://chromium-review.googlesource.com/711415 Reviewed-by: Leonard Mosescu <mosescu@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org>
26 lines
861 B
C
26 lines
861 B
C
// Copyright 2017 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef CRASHPAD_COMPAT_WIN_WINTERNL_H_
|
|
#define CRASHPAD_COMPAT_WIN_WINTERNL_H_
|
|
|
|
// include_next <winternl.h>
|
|
#include <../um/winternl.h>
|
|
|
|
// 10.0.16299.0 SDK
|
|
|
|
typedef struct _CLIENT_ID CLIENT_ID;
|
|
|
|
#endif // CRASHPAD_COMPAT_WIN_WINTERNL_H_
|