You've already forked linux-packaging-mono
29 lines
773 B
C#
29 lines
773 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="NativeMethods.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
#if ENABLE_NclNativeMethods
|
|
|
|
//
|
|
// remove above #if statement if we ever need to put some
|
|
// PInvoke declaration in this bucket, until it remains empty
|
|
// it would just be waisting space to compile it.
|
|
//
|
|
namespace System.Net {
|
|
using System.Runtime.InteropServices;
|
|
|
|
internal class NclNativeMethods {
|
|
//
|
|
// this should remain empty
|
|
//
|
|
|
|
}; // class NclNativeMethods
|
|
|
|
|
|
} // namespace System.Net
|
|
|
|
#endif // #if ENABLE_NclNativeMethods
|
|
|