summaryrefslogtreecommitdiff
path: root/chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h')
-rw-r--r--chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h b/chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h
new file mode 100644
index 00000000000..9033fdb22e8
--- /dev/null
+++ b/chromium/third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/impl/Windows.Graphics.2.h
@@ -0,0 +1,76 @@
+// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.210930.14
+
+#pragma once
+#ifndef WINRT_Windows_Graphics_2_H
+#define WINRT_Windows_Graphics_2_H
+#include "winrt/impl/Windows.Graphics.1.h"
+WINRT_EXPORT namespace winrt::Windows::Graphics
+{
+ struct DisplayAdapterId
+ {
+ uint32_t LowPart;
+ int32_t HighPart;
+ };
+ inline bool operator==(DisplayAdapterId const& left, DisplayAdapterId const& right) noexcept
+ {
+ return left.LowPart == right.LowPart && left.HighPart == right.HighPart;
+ }
+ inline bool operator!=(DisplayAdapterId const& left, DisplayAdapterId const& right) noexcept
+ {
+ return !(left == right);
+ }
+ struct DisplayId
+ {
+ uint64_t Value;
+ };
+ inline bool operator==(DisplayId const& left, DisplayId const& right) noexcept
+ {
+ return left.Value == right.Value;
+ }
+ inline bool operator!=(DisplayId const& left, DisplayId const& right) noexcept
+ {
+ return !(left == right);
+ }
+ struct PointInt32
+ {
+ int32_t X;
+ int32_t Y;
+ };
+ inline bool operator==(PointInt32 const& left, PointInt32 const& right) noexcept
+ {
+ return left.X == right.X && left.Y == right.Y;
+ }
+ inline bool operator!=(PointInt32 const& left, PointInt32 const& right) noexcept
+ {
+ return !(left == right);
+ }
+ struct RectInt32
+ {
+ int32_t X;
+ int32_t Y;
+ int32_t Width;
+ int32_t Height;
+ };
+ inline bool operator==(RectInt32 const& left, RectInt32 const& right) noexcept
+ {
+ return left.X == right.X && left.Y == right.Y && left.Width == right.Width && left.Height == right.Height;
+ }
+ inline bool operator!=(RectInt32 const& left, RectInt32 const& right) noexcept
+ {
+ return !(left == right);
+ }
+ struct SizeInt32
+ {
+ int32_t Width;
+ int32_t Height;
+ };
+ inline bool operator==(SizeInt32 const& left, SizeInt32 const& right) noexcept
+ {
+ return left.Width == right.Width && left.Height == right.Height;
+ }
+ inline bool operator!=(SizeInt32 const& left, SizeInt32 const& right) noexcept
+ {
+ return !(left == right);
+ }
+}
+#endif