win_handle_types.h 529 B

12345678910111213141516
  1. // Copyright 2022 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_WIN_HANDLE_TYPES_H_
  5. #define BASE_WIN_WIN_HANDLE_TYPES_H_
  6. // Forward declare Windows compatible handles.
  7. #define CHROME_WINDOWS_HANDLE_TYPE(name) \
  8. struct name##__; \
  9. typedef struct name##__* name;
  10. #include "base/win/win_handle_types_list.inc"
  11. #undef CHROME_WINDOWS_HANDLE_TYPE
  12. #endif // BASE_WIN_WIN_HANDLE_TYPES_H_