mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
24 lines
602 B
C#
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;
|
|
}
|
|
};
|
|
|
|
|
|
}
|