Module: wine Branch: master Commit: a00d6ccb7b5c5c775f499dd87d5527baa7b8527c URL: http://source.winehq.org/git/wine.git/?a=commit;h=a00d6ccb7b5c5c775f499dd87d...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Aug 10 13:20:07 2015 +0200
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 6e0062a..2c16fa2 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)