1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

base / win / wbemidl_shim.h [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef BASE_WIN_WBEMIDL_SHIM_H_
#define BASE_WIN_WBEMIDL_SHIM_H_

// Any Chromium headers which want to `#include <wbemidl.h>` should instead
// #include this header.

// <wbemidl.h> #includes <winbase.h>, and so needs to shim it; see comments in
// winbase_shim.h.
// clang-format off
#include "base/win/winbase_shim.h"
#include <wbemidl.h>
// clang-format on

#endif  // BASE_WIN_WBEMIDL_SHIM_H_