Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@195 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
4 changed files with 173 additions and 9 deletions
@ -0,0 +1,29 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
|
||||||
|
namespace DebuggerLibrary |
||||||
|
{ |
||||||
|
struct MethodProps |
||||||
|
{ |
||||||
|
public uint Token; |
||||||
|
public string Name; |
||||||
|
public uint ClassToken; |
||||||
|
public uint Flags; |
||||||
|
public uint ImplFlags; |
||||||
|
public uint CodeRVA; |
||||||
|
public SignatureStream Signature; |
||||||
|
|
||||||
|
public bool IsStatic { |
||||||
|
get { |
||||||
|
return (Flags & (uint)CorMethodAttr.mdStatic) != 0; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public bool HasSpecialName { |
||||||
|
get { |
||||||
|
return (Flags & (uint)CorMethodAttr.mdSpecialName) != 0; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
|
||||||
|
namespace DebuggerLibrary |
||||||
|
{ |
||||||
|
struct ParamProps |
||||||
|
{ |
||||||
|
public uint Token; |
||||||
|
public string Name; |
||||||
|
public uint MethodToken; |
||||||
|
public uint ParameterSequence; |
||||||
|
public uint Flags; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue