SharpCifs.Smb.ServerMessageBlock.WriteUTime C# (CSharp) Method

WriteUTime() static private method

static private WriteUTime ( long t, byte dst, int dstIndex ) : void
t long
dst byte
dstIndex int
return void
		internal static void WriteUTime(long t, byte[] dst, int dstIndex)
		{
			if (t == 0L || t == unchecked((long)(0xFFFFFFFFFFFFFFFFL)))
			{
				WriteInt4(unchecked((int)(0xFFFFFFFF)), dst, dstIndex);
				return;
			}
			// t isn't in DST either
			WriteInt4((int)(t / 1000L), dst, dstIndex);
		}