xenia/src/Xenia.Debug/Proto/xe/debug/proto/ListModuleEntry.cs
2015-06-08 23:22:25 -07:00

24 lines
602 B
C#

// automatically generated, do not modify
namespace xe.debug.proto
{
using FlatBuffers;
public sealed class ListModuleEntry : Struct {
public ListModuleEntry __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
public uint Handle { get { return bb.GetUint(bb_pos + 0); } }
public uint FunctionCount { get { return bb.GetUint(bb_pos + 4); } }
public static int CreateListModuleEntry(FlatBufferBuilder builder, uint Handle, uint FunctionCount) {
builder.Prep(4, 8);
builder.PutUint(FunctionCount);
builder.PutUint(Handle);
return builder.Offset;
}
};
}