From a00d6ccb7b5c5c775f499dd87d5527baa7b8527c Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 10 Aug 2015 13:20:07 +0200 Subject: [PATCH] windows.foundation.idl: Added struct declarations. --- include/windows.foundation.idl | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/include/windows.foundation.idl b/include/windows.foundation.idl index 6e0062ad0bf..2c16fa2da22 100644 --- a/include/windows.foundation.idl +++ b/include/windows.foundation.idl @@ -72,6 +72,36 @@ namespace Windows { OtherTypeArray = 1044 }; + [version(0x06020000)] + struct Point { + FLOAT X; + FLOAT Y; + }; + + [version(0x06020000)] + struct Size { + FLOAT Width; + FLOAT Height; + }; + + [version(0x06020000)] + struct Rect { + FLOAT X; + FLOAT Y; + FLOAT Width; + FLOAT Height; + }; + + [version(0x06020000)] + struct DateTime { + INT64 UniversalTime; + }; + + [version(0x06020000)] + struct TimeSpan { + INT64 Duration; + }; + [ version(0x06030000), uuid(96369f54-8eb6-48f0-abce-c1b211e627c3)