Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-23 04:46:05 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-23 04:46:05 +0300
commitd1a409d9aebb59078025735469b195e52e27586c (patch)
treeacf8a07731168d9a6f4232018d7f0cd35ea50d66 /SevenZip
parentfb6b8383c27560c30e7a3076c67b925a7f8ff363 (diff)
Global command line arguments (NOT TESTED YET!)
Diffstat (limited to 'SevenZip')
-rw-r--r--SevenZip/ArchiveExtractCallback.cs3
-rw-r--r--SevenZip/ArchiveOpenCallback.cs3
-rw-r--r--SevenZip/COM.cs3
-rw-r--r--SevenZip/Common.cs13
-rw-r--r--SevenZip/EventArgs.cs3
-rw-r--r--SevenZip/Exceptions.cs3
-rw-r--r--SevenZip/FileSignatureChecker.cs3
-rw-r--r--SevenZip/Formats.cs3
-rw-r--r--SevenZip/LibraryManager.cs3
-rw-r--r--SevenZip/NativeMethods.cs3
-rw-r--r--SevenZip/SevenZipExtractor.cs3
-rw-r--r--SevenZip/SevenZipExtractorAsynchronous.cs2
-rw-r--r--SevenZip/StreamWrappers.cs3
13 files changed, 44 insertions, 4 deletions
diff --git a/SevenZip/ArchiveExtractCallback.cs b/SevenZip/ArchiveExtractCallback.cs
index d9aedc0f..e7aced62 100644
--- a/SevenZip/ArchiveExtractCallback.cs
+++ b/SevenZip/ArchiveExtractCallback.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.Globalization;
diff --git a/SevenZip/ArchiveOpenCallback.cs b/SevenZip/ArchiveOpenCallback.cs
index 080ce8c6..dc24a6d2 100644
--- a/SevenZip/ArchiveOpenCallback.cs
+++ b/SevenZip/ArchiveOpenCallback.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/SevenZip/COM.cs b/SevenZip/COM.cs
index 31d2a4d8..d4846959 100644
--- a/SevenZip/COM.cs
+++ b/SevenZip/COM.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.Globalization;
diff --git a/SevenZip/Common.cs b/SevenZip/Common.cs
index c79c8699..91d88818 100644
--- a/SevenZip/Common.cs
+++ b/SevenZip/Common.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@@ -439,10 +442,12 @@ Dispatcher == null
{
type = "SevenZipExtractor";
}
- //if (this is SevenZipCompressor)
- //{
- // type = "SevenZipCompressor";
- //}
+ /*
+ if (this is SevenZipCompressor)
+ {
+ type = "SevenZipCompressor";
+ }
+ */
return string.Format("{0} [{1}]", type, _uniqueID);
}
}
diff --git a/SevenZip/EventArgs.cs b/SevenZip/EventArgs.cs
index 82890ee8..69ac5c52 100644
--- a/SevenZip/EventArgs.cs
+++ b/SevenZip/EventArgs.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.IO;
diff --git a/SevenZip/Exceptions.cs b/SevenZip/Exceptions.cs
index 8a8410e0..3bbfb443 100644
--- a/SevenZip/Exceptions.cs
+++ b/SevenZip/Exceptions.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
#if !WINCE
using System.Runtime.Serialization;
diff --git a/SevenZip/FileSignatureChecker.cs b/SevenZip/FileSignatureChecker.cs
index 294cdc95..0251a3b0 100644
--- a/SevenZip/FileSignatureChecker.cs
+++ b/SevenZip/FileSignatureChecker.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.IO;
diff --git a/SevenZip/Formats.cs b/SevenZip/Formats.cs
index 3c7acb85..9aff7eda 100644
--- a/SevenZip/Formats.cs
+++ b/SevenZip/Formats.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/SevenZip/LibraryManager.cs b/SevenZip/LibraryManager.cs
index 610b7f28..efee920f 100644
--- a/SevenZip/LibraryManager.cs
+++ b/SevenZip/LibraryManager.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
#if !WINCE && !MONO
diff --git a/SevenZip/NativeMethods.cs b/SevenZip/NativeMethods.cs
index 02ef5e7e..70c794a6 100644
--- a/SevenZip/NativeMethods.cs
+++ b/SevenZip/NativeMethods.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Runtime.InteropServices;
#if MONO
diff --git a/SevenZip/SevenZipExtractor.cs b/SevenZip/SevenZipExtractor.cs
index 51e3b174..00be9ee3 100644
--- a/SevenZip/SevenZipExtractor.cs
+++ b/SevenZip/SevenZipExtractor.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
diff --git a/SevenZip/SevenZipExtractorAsynchronous.cs b/SevenZip/SevenZipExtractorAsynchronous.cs
index 4d00ddc4..b72b0ddb 100644
--- a/SevenZip/SevenZipExtractorAsynchronous.cs
+++ b/SevenZip/SevenZipExtractorAsynchronous.cs
@@ -13,6 +13,8 @@
You should have received a copy of the GNU Lesser General Public License
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
namespace SevenZip
{
diff --git a/SevenZip/StreamWrappers.cs b/SevenZip/StreamWrappers.cs
index 55821d3e..22f28abc 100644
--- a/SevenZip/StreamWrappers.cs
+++ b/SevenZip/StreamWrappers.cs
@@ -14,6 +14,9 @@
along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
*/
+#define DOTNET20
+#define UNMANAGED
+
using System;
using System.Collections.Generic;
using System.Globalization;