22 lines
606 B
C#
22 lines
606 B
C#
// Author:
|
|
// Juerg Billeter (j@bitron.ch)
|
|
//
|
|
// (C) 2008 Juerg Billeter
|
|
//
|
|
// Licensed under the MIT/X11 license.
|
|
//
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Mono.Cecil.Pdb {
|
|
|
|
[Guid ("B01FAFEB-C450-3A4D-BEEC-B4CEEC01E006")]
|
|
[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
|
|
[ComImport]
|
|
interface ISymUnmanagedDocumentWriter {
|
|
void SetSource (uint sourceSize, [MarshalAs (UnmanagedType.LPArray, SizeParamIndex = 0)] byte [] source);
|
|
void SetCheckSum (Guid algorithmId, uint checkSumSize, [MarshalAs (UnmanagedType.LPArray, SizeParamIndex = 1)] byte [] checkSum);
|
|
}
|
|
}
|