25 lines
504 B
C#
25 lines
504 B
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
|
// <version>$Revision: 2185 $</version>
|
|
// </file>
|
|
|
|
#pragma warning disable 1591
|
|
|
|
using System;
|
|
|
|
namespace Debugger.Wrappers.MetaData
|
|
{
|
|
public struct ParamProps
|
|
{
|
|
public uint Token;
|
|
public string Name;
|
|
public uint MethodToken;
|
|
public uint ParameterSequence;
|
|
public uint Flags;
|
|
}
|
|
}
|
|
|
|
#pragma warning restore 1591
|