windows.foundation.idl: Added struct declarations.

This commit is contained in:
Jacek Caban 2015-08-10 13:20:07 +02:00 committed by Alexandre Julliard
parent 7c29a53208
commit a00d6ccb7b
1 changed files with 30 additions and 0 deletions

View File

@ -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)