Added Windows NT libraries and errors.

This commit is contained in:
2015-05-04 00:05:25 +01:00
parent f7e1cb986f
commit 7e9d65832c
4 changed files with 7277 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
2015-05-04 Natalia Portillo <claunia@claunia.com>
* Claunia.IO.csproj:
* Interop/Windows/Interop.Windows.Errors.cs:
* Interop/Windows/Interop.Windows.Libraries.cs:
Added Windows NT libraries and errors.
2015-05-03 Natalia Portillo <claunia@claunia.com>
* Interop/FreeBSD/Interop.FreeBSD.extattr.cs:

View File

@@ -67,6 +67,8 @@
<Compile Include="Interop\FreeBSD\Interop.FreeBSD.types.cs" />
<Compile Include="Interop\FreeBSD\Interop.FreeBSD.statfs.cs" />
<Compile Include="Interop\FreeBSD\Interop.FreeBSD.extattr.cs" />
<Compile Include="Interop\Windows\Interop.Windows.Libraries.cs" />
<Compile Include="Interop\Windows\Interop.Windows.Errors.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
@@ -81,5 +83,6 @@
<Folder Include="Tests\" />
<Folder Include="Interop\Linux\" />
<Folder Include="Interop\FreeBSD\" />
<Folder Include="Interop\Windows\" />
</ItemGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
//
// Interop.Linux.Libraries.cs
//
// Author:
// Natalia Portillo <claunia@claunia.com>
//
// Copyright (c) 2015 © Claunia.com
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
internal static partial class Interop
{
internal static partial class Windows
{
static class Libraries
{
internal const string NTDLL = "ntdll.dll";
}
}
}