cmd: DIR command outputs free space for the path.
[wine.git] / dlls / cryptowinrt / provider.idl
blob7196119dba0f458ea926a920f7b48c7ac1486b47
1 /*
2 * Copyright 2022 Mohamad Al-Jaf
3 * Copyright 2022 RĂ©mi Bernon for CodeWeavers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #pragma makedep header
22 #ifdef __WIDL__
23 #pragma winrt ns_prefix
24 #endif
26 import "propidl.idl";
27 import "inspectable.idl";
28 import "asyncinfo.idl";
29 import "eventtoken.idl";
30 import "windowscontracts.idl";
31 import "windows.foundation.idl";
33 namespace Windows.Security.Credentials {
34 /* type-pruning version of AsyncOperationCompletedHandler<T> */
35 delegate HRESULT WineAsyncOperationCompletedHandler([in] IInspectable *async, [in] AsyncStatus status);
38 uuid(83f377ee-c799-11ec-9d64-0242ac120002)
40 interface IWineAsyncInfoImpl : IUnknown
42 [propput] HRESULT Completed([in] WineAsyncOperationCompletedHandler *handler);
43 [propget] HRESULT Completed([out, retval] WineAsyncOperationCompletedHandler **handler);
44 [propget] HRESULT Result([out, retval] PROPVARIANT *result);
45 HRESULT Start();