Xamarin Public Jenkins (auto-signing) ef583813eb Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
2019-07-26 19:53:28 +00:00

24 lines
883 B
C#

using System.IO;
using System.Reflection;
namespace System.Runtime.InteropServices
{
partial class NativeLibrary
{
static IntPtr LoadLibraryByName (string libraryName, Assembly assembly, DllImportSearchPath? searchPath, bool throwOnError) => throw new NotImplementedException ();
static IntPtr LoadFromPath (string libraryName, bool throwOnError) {
// TODO: implement
if (throwOnError) {
throw new DllNotFoundException();
}
return IntPtr.Zero;
}
static IntPtr LoadByName (string libraryName, RuntimeAssembly callingAssembly, bool hasDllImportSearchPathFlag, uint dllImportSearchPathFlag, bool throwOnError) => throw new NotImplementedException ();
static void FreeLib (IntPtr handle) => throw new NotImplementedException ();
static IntPtr GetSymbol (IntPtr handle, string symbolName, bool throwOnError) => throw new NotImplementedException ();
}
}