wined3d: Merge wined3d_device_update_texture_3d() into wined3d_device_update_texture().
[wine.git] / include / wsdbase.idl
blob35db5b90be0175fb5ca9f092f09b668fc64a5ea6
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 interface IWSDAddress;
22 interface IWSDMessageParameters;
25 uuid(b9574c6c-12a6-4f74-93a1-3318ff605759),
26 object,
27 local
29 interface IWSDAddress : IUnknown
31 HRESULT Serialize([out, size_is(cchLength)] LPWSTR pszBuffer, [in] DWORD cchLength, [in] BOOL fSafe);
32 HRESULT Deserialize([in] LPCWSTR pszBuffer);
36 uuid(1fafe8a2-e6fc-4b80-b6cf-b7d45c416d7c),
37 object
39 interface IWSDMessageParameters : IUnknown
41 HRESULT GetLocalAddress([out] IWSDAddress** ppAddress);
42 HRESULT SetLocalAddress([in] IWSDAddress* pAddress);
43 HRESULT GetRemoteAddress([out] IWSDAddress** ppAddress);
44 HRESULT SetRemoteAddress([in] IWSDAddress* pAddress);
45 HRESULT GetLowerParameters([out] IWSDMessageParameters** ppTxParams);