shlwapi.h 722 B

12345678910111213141516171819
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef BASE_WIN_SHLWAPI_H_
  5. #define BASE_WIN_SHLWAPI_H_
  6. // Check no prior poisonous defines were made.
  7. #include "base/win/windows_defines.inc"
  8. // Undefine before windows header will make the poisonous defines
  9. #include "base/win/windows_undefines.inc"
  10. #include <shlwapi.h> // NOLINT(build/include_order)
  11. // Undefine the poisonous defines
  12. #include "base/win/windows_undefines.inc" // NOLINT(build/include)
  13. // Check no poisonous defines follow this include
  14. #include "base/win/windows_defines.inc" // NOLINT(build/include)
  15. #endif // BASE_WIN_SHLWAPI_H_