Move BizInvoke files from Emulation.Common to Common
This commit is contained in:
parent
e1750bdce9
commit
b3ad3ce6ba
|
@ -90,6 +90,8 @@
|
||||||
<Compile Include="BinaryQuickSerializer.cs" />
|
<Compile Include="BinaryQuickSerializer.cs" />
|
||||||
<Compile Include="Bit.cs" />
|
<Compile Include="Bit.cs" />
|
||||||
<Compile Include="BitReverse.cs" />
|
<Compile Include="BitReverse.cs" />
|
||||||
|
<Compile Include="BizInvoke\BizInvoker.cs" />
|
||||||
|
<Compile Include="BizInvoke\DynamicLibraryImportResolver.cs" />
|
||||||
<Compile Include="Buffer.cs" />
|
<Compile Include="Buffer.cs" />
|
||||||
<Compile Include="Colors.cs" />
|
<Compile Include="Colors.cs" />
|
||||||
<Compile Include="CustomCollections.cs" />
|
<Compile Include="CustomCollections.cs" />
|
||||||
|
|
|
@ -7,7 +7,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
using BizHawk.Common;
|
using BizHawk.Common;
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Common.BizInvoke
|
namespace BizHawk.Common.BizInvoke
|
||||||
{
|
{
|
||||||
public static class BizInvoker
|
public static class BizInvoker
|
||||||
{
|
{
|
|
@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
using BizHawk.Common;
|
using BizHawk.Common;
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Common.BizInvoke
|
namespace BizHawk.Common.BizInvoke
|
||||||
{
|
{
|
||||||
public class DynamicLibraryImportResolver : IImportResolver, IDisposable
|
public class DynamicLibraryImportResolver : IImportResolver, IDisposable
|
||||||
{
|
{
|
|
@ -104,8 +104,6 @@
|
||||||
<Compile Include="Base Implementations\NullVideo.cs" />
|
<Compile Include="Base Implementations\NullVideo.cs" />
|
||||||
<Compile Include="Base Implementations\SimpleSyncSoundProvider.cs" />
|
<Compile Include="Base Implementations\SimpleSyncSoundProvider.cs" />
|
||||||
<Compile Include="Base Implementations\TraceBuffer.cs" />
|
<Compile Include="Base Implementations\TraceBuffer.cs" />
|
||||||
<Compile Include="BizInvoke\BizInvoker.cs" />
|
|
||||||
<Compile Include="BizInvoke\DynamicLibraryImportResolver.cs" />
|
|
||||||
<Compile Include="Base Implementations\CodeDataLog.cs" />
|
<Compile Include="Base Implementations\CodeDataLog.cs" />
|
||||||
<Compile Include="ControllerDefinitionMerger.cs" />
|
<Compile Include="ControllerDefinitionMerger.cs" />
|
||||||
<Compile Include="CoreAttributes.cs" />
|
<Compile Include="CoreAttributes.cs" />
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using BizHawk.Emulation.Common.BizInvoke;
|
|
||||||
|
using BizHawk.Common.BizInvoke;
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
using BizHawk.Emulation.Common;
|
using BizHawk.Emulation.Common;
|
||||||
using BizHawk.Emulation.Common.BizInvoke;
|
using BizHawk.Common.BizInvoke;
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
using BizHawk.Common.BizInvoke;
|
||||||
using BizHawk.Emulation.Common;
|
using BizHawk.Emulation.Common;
|
||||||
using BizHawk.Common;
|
|
||||||
using System.IO;
|
|
||||||
using BizHawk.Emulation.Common.BizInvoke;
|
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx64
|
namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx64
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using BizHawk.Emulation.Common.BizInvoke;
|
|
||||||
|
using BizHawk.Common.BizInvoke;
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx64
|
namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx64
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue