ab56a9bcf7
SVN-Revision: r240
14 lines
299 B
C#
14 lines
299 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Lskj.AttachStart.Service
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct MsgHeader
|
|
{
|
|
public const uint sizeOf = 8;
|
|
public uint dwType;
|
|
public uint dwLen;
|
|
public uint dwUserId;
|
|
}
|
|
} |