16 lines
300 B
C#
16 lines
300 B
C#
namespace LSServerService
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct MsgHeader
|
|
{
|
|
public const uint sizeOf = 8;
|
|
public uint dwType;
|
|
public uint dwLen;
|
|
public uint dwUserId;
|
|
}
|
|
}
|
|
|