Files
lserp_cs_5.0/LSTest/LSServerService/C2S2C_SmartResponse.cs
T
2026-07-10 15:25:05 +08:00

23 lines
596 B
C#

namespace LSServerService
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, Pack=1)]
public struct C2S2C_SmartResponse
{
public const uint ID = 69634;
public MsgHeader header;
public uint dwFieldCount;
public uint dwDataLen;
public C2S2C_SmartResponse(bool autoSet)
{
this.dwFieldCount = this.dwDataLen = 0;
this.header = new MsgHeader();
this.header.dwType = 69634;
this.header.dwLen = (uint) Marshal.SizeOf(this);
}
}
}