winemac: When realizing latent child windows, maintain their relative z-order.
[wine.git] / include / wsdbase.idl
blobc93262daa889c10b0a9ae72938b3240a0fe8184f
1 /*
2 * Copyright 2017 Owen Rudge for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 import "objidl.idl";
21 cpp_quote("#define WSDAPI_ADDRESSFAMILY_IPV4 1")
22 cpp_quote("#define WSDAPI_ADDRESSFAMILY_IPV6 2")
24 interface IWSDAddress;
25 interface IWSDMessageParameters;
28 uuid(b9574c6c-12a6-4f74-93a1-3318ff605759),
29 object,
30 local
32 interface IWSDAddress : IUnknown
34 HRESULT Serialize([out, size_is(cchLength)] LPWSTR pszBuffer, [in] DWORD cchLength, [in] BOOL fSafe);
35 HRESULT Deserialize([in] LPCWSTR pszBuffer);
39 uuid(1fafe8a2-e6fc-4b80-b6cf-b7d45c416d7c),
40 object
42 interface IWSDMessageParameters : IUnknown
44 HRESULT GetLocalAddress([out] IWSDAddress** ppAddress);
45 HRESULT SetLocalAddress([in] IWSDAddress* pAddress);
46 HRESULT GetRemoteAddress([out] IWSDAddress** ppAddress);
47 HRESULT SetRemoteAddress([in] IWSDAddress* pAddress);
48 HRESULT GetLowerParameters([out] IWSDMessageParameters** ppTxParams);