Files
lserp_cs_6.0/插件库/Lskj.Test/LSServerService/C2S2C_SmartResponse.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00: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);
}
}
}