1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

include: Add IReference<T> interface.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2022-03-07 10:40:27 +01:00 committed by Alexandre Julliard
parent aca853c73e
commit a05ece8c51

View file

@ -73,6 +73,15 @@ cpp_quote("#endif")
]
delegate HRESULT TypedEventHandler<TSender, TArgs>([in] TSender sender, [in] TArgs args);
[
contract(Windows.Foundation.FoundationContract, 1.0),
uuid(61c17706-2d65-11e0-9ae8-d48564015472)
]
interface IReference<T> : IInspectable
{
[propget] HRESULT Value([out, retval] T *value);
}
namespace Collections
{
[