Commit a00d6ccb authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

windows.foundation.idl: Added struct declarations.

parent 7c29a532
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment