46 lines
1.8 KiB
C++
46 lines
1.8 KiB
C++
|
|
// Copyright 2014 The Chromium Authors
|
||
|
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
|
// found in the LICENSE file.
|
||
|
|
|
||
|
|
// This file ensures that these header files don't include Windows.h and can
|
||
|
|
// compile without including Windows.h. This helps to improve compile times.
|
||
|
|
|
||
|
|
#include "base/allocator/partition_allocator/partition_alloc-inl.h"
|
||
|
|
#include "base/allocator/partition_allocator/partition_tls.h"
|
||
|
|
#include "base/allocator/partition_allocator/spinning_mutex.h"
|
||
|
|
#include "base/atomicops.h"
|
||
|
|
#include "base/files/file_util.h"
|
||
|
|
#include "base/files/platform_file.h"
|
||
|
|
#include "base/process/process_handle.h"
|
||
|
|
#include "base/synchronization/condition_variable.h"
|
||
|
|
#include "base/synchronization/lock.h"
|
||
|
|
#include "base/threading/platform_thread.h"
|
||
|
|
#include "base/threading/thread_local_storage.h"
|
||
|
|
#include "base/win/registry.h"
|
||
|
|
#include "base/win/scoped_handle.h"
|
||
|
|
#include "base/win/win_util.h"
|
||
|
|
|
||
|
|
#ifdef _WINDOWS_
|
||
|
|
#error Windows.h was included inappropriately.
|
||
|
|
#endif
|
||
|
|
|
||
|
|
// Make sure windows.h can be included after windows_types.h
|
||
|
|
#include "base/win/windows_types.h"
|
||
|
|
|
||
|
|
// windows.h must be included before objidl.h
|
||
|
|
#include <windows.h> // NOLINT(build/include_order)
|
||
|
|
|
||
|
|
#include <objidl.h> // NOLINT(build/include_order)
|
||
|
|
|
||
|
|
// Check that type sizes match.
|
||
|
|
static_assert(sizeof(CHROME_CONDITION_VARIABLE) == sizeof(CONDITION_VARIABLE),
|
||
|
|
"Definition mismatch.");
|
||
|
|
static_assert(sizeof(CHROME_SRWLOCK) == sizeof(SRWLOCK),
|
||
|
|
"Definition mismatch.");
|
||
|
|
static_assert(sizeof(CHROME_WIN32_FIND_DATA) == sizeof(WIN32_FIND_DATA),
|
||
|
|
"Definition mismatch.");
|
||
|
|
static_assert(sizeof(CHROME_FORMATETC) == sizeof(FORMATETC),
|
||
|
|
"Definition mismatch.");
|
||
|
|
static_assert(sizeof(CHROME_LUID) == sizeof(LUID), "Definition mismatch.");
|
||
|
|
static_assert(sizeof(CHROME_MSG) == sizeof(MSG), "Definition mismatch.");
|