Files
2026-08-27 10:56:38 -06:00

14 lines
405 B
C#

using System.Runtime.InteropServices;
namespace Microsoft.DiaSymReader;
[ComImport]
[Guid("2ae6a06a-92ba-4c2d-a64e-7e9fa421a330")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComVisible(false)]
internal interface ISymUnmanagedCompilerInfoWriter
{
[PreserveSig]
int AddCompilerInfo(ushort major, ushort minor, ushort build, ushort revision, [MarshalAs(UnmanagedType.LPWStr)] string name);
}