init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
namespace LSServerService
|
||||
{
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
internal class LSFileData
|
||||
{
|
||||
public int dwFileId;
|
||||
public int dwRevPacketCount;
|
||||
public int dwTotalBytes;
|
||||
public int dwTotalCount;
|
||||
public uint dwUserId = 0;
|
||||
public FileStream fs;
|
||||
public int lastWriteTime;
|
||||
|
||||
public LSFileData()
|
||||
{
|
||||
this.dwFileId = this.dwTotalBytes = this.dwTotalCount = this.dwRevPacketCount = 0;
|
||||
this.fs = null;
|
||||
this.lastWriteTime = Environment.TickCount;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user