Xamarin Public Jenkins (auto-signing) 6bdd276d05 Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
2017-04-10 11:41:01 +00:00

46 lines
915 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ZipFileInfo.cs created with MonoDevelop
// User: alan at 12:14 13/10/2008
//
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
//
using System;
using System.Runtime.InteropServices;
namespace zipsharp
{
[StructLayoutAttribute (LayoutKind.Sequential)]
struct ZipFileInfo32
{
ZipTime date;
uint dosDate;
uint internalFileAttributes;
uint externalFileAttributes;
public ZipFileInfo32 (DateTime fileTime)
{
date = new ZipTime (fileTime);
dosDate = 0;
internalFileAttributes = 0;
externalFileAttributes = 0;
}
}
[StructLayoutAttribute (LayoutKind.Sequential)]
struct ZipFileInfo64
{
ZipTime date;
ulong dosDate;
ulong internalFileAttributes;
ulong externalFileAttributes;
public ZipFileInfo64 (DateTime fileTime)
{
date = new ZipTime (fileTime);
dosDate = 0;
internalFileAttributes = 0;
externalFileAttributes = 0;
}
}
}