winhttp: Don't refill buffer after receiving server response.
[wine.git] / dlls / diasymreader / diasymreader.idl
blob954495e515d3c59a52fa114b40b2e9c50fbd468e
1 /*
2 * Copyright (C) 2022 Esme Povirk
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 "unknwn.idl";
20 import "objidl.idl";
21 import "oaidl.idl";
23 #pragma makedep header
25 /* Undocumented interface used by
26 * https://github.com/dotnet/symreader/blob/fe43beb65a8567834c717e2478ba36f1e98db8b5/src/Microsoft.DiaSymReader/Writer/ISymUnmanagedWriter.cs */
28 object,
29 uuid(98ecee1e-752d-11d3-8d56-00c04f680b2b),
30 pointer_default(unique)
32 interface IPdbWriter : IUnknown
34 HRESULT SetPath([in] const WCHAR *fullpath, [in] IStream *stream, [in] BOOL fullbuild);
35 HRESULT OpenMod([in] const WCHAR *modulename, [in] const WCHAR *filename);
36 HRESULT CloseMod();
37 HRESULT GetPath([in] DWORD ccData, [out] DWORD *pccData, [out, size_is(ccData), length_is(*pccData)] WCHAR *path);
38 HRESULT GetSignatureAge([out] DWORD *timestamp, [out] DWORD *age);