mirror of
https://github.com/claunia/Claunia.IO.git
synced 2025-12-16 19:24:44 +00:00
Added Windows NT libraries and errors.
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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>
|
||||
7231
Claunia.IO/Interop/Windows/Interop.Windows.Errors.cs
Normal file
7231
Claunia.IO/Interop/Windows/Interop.Windows.Errors.cs
Normal file
File diff suppressed because it is too large
Load Diff
36
Claunia.IO/Interop/Windows/Interop.Windows.Libraries.cs
Normal file
36
Claunia.IO/Interop/Windows/Interop.Windows.Libraries.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user