Files
2026-07-10 15:25:05 +08:00

22 lines
540 B
C#

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