Skip to content

Commit

Permalink
- removed unused nuget files
Browse files Browse the repository at this point in the history
- made some threads background threads
- updated HearthCapLogger/Loader
  • Loading branch information
remcoros committed Aug 28, 2015
1 parent d26dbeb commit b6a1f8d
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 159 deletions.
6 changes: 0 additions & 6 deletions .nuget/NuGet.Config

This file was deleted.

Binary file removed .nuget/NuGet.exe
Binary file not shown.
144 changes: 0 additions & 144 deletions .nuget/NuGet.targets

This file was deleted.

1 change: 1 addition & 0 deletions Capture/Hook/DXHookD3D9.cs
Expand Up @@ -731,6 +731,7 @@ private void SetupSurfaces(Device device)

killThread = false;
this.retrieveThread = new Thread(this.RetrieveImageDataThread);
this.retrieveThread.IsBackground = true;
this.retrieveThread.Start();

this.surfacesSetup = true;
Expand Down
1 change: 1 addition & 0 deletions Capture/Hook/DXHookD3D9SharedMem.cs
Expand Up @@ -857,6 +857,7 @@ private void SetupSurfaces(Device device)
Marshal.StructureToPtr(this.copyData, new IntPtr(copyDataMemPtr), false);

this.retrieveThread = new Thread(this.RetrieveImageDataThread);
retrieveThread.IsBackground = true;
this.retrieveThread.Start();
hookReadyWaitHandle.Set();
}
Expand Down
2 changes: 2 additions & 0 deletions Capture/Hook/DXHookD3D9Simple.cs
Expand Up @@ -727,9 +727,11 @@ private void SetupSurfaces(Device device)

killThread = false;
this.copyThread = new Thread(this.HandleCaptureRequestThread);
this.copyThread.IsBackground = true;
this.copyThread.Start();

this.retrieveThread = new Thread(this.RetrieveImageDataThread);
this.retrieveThread.IsBackground = true;
this.retrieveThread.Start();

this.surfacesSetup = true;
Expand Down
11 changes: 2 additions & 9 deletions HearthCap.sln
@@ -1,21 +1,14 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HearthCap", "HearthCap\HearthCap.csproj", "{9A838E34-5AA7-4BDC-B730-6A59C3F02054}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HearthCap.Core", "HearthCap.Core\HearthCap.Core.csproj", "{9A35DBB0-2892-4257-BB58-B6E383D8F408}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HearthCap.Data", "HearthCap.Data\HearthCap.Data.csproj", "{DE8E519E-B0AF-4605-8076-37D59651A775}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{7D7B6759-091B-4F4A-A4F8-3FC753681DB0}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PHash.AForge", "PHash.AForge\PHash.AForge.csproj", "{F9C10B21-24D7-4741-88B9-B99E77033295}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PHash", "PHash\PHash.csproj", "{8CB58721-58DF-4E3D-8814-682275982EBF}"
Expand Down
6 changes: 6 additions & 0 deletions NuGet.Config
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
Binary file modified lib/HearthCap/HearthCap.Logger.Interface.dll
Binary file not shown.
Binary file modified lib/HearthCap/HearthCapLoader.dll
Binary file not shown.
Binary file modified lib/HearthCap/HearthCapLogger.dll
Binary file not shown.

0 comments on commit b6a1f8d

Please sign in to comment.