From 3ccbab2461c0ad23107e7bd0efcd5b8a91eb0094 Mon Sep 17 00:00:00 2001 From: Robert Xiao Date: Sat, 20 Jun 2020 16:15:41 -0700 Subject: [PATCH] Add/modify copyright notices --- Il2CppInspector.Common/IL2CPP/MetadataUsage.cs | 1 + Il2CppInspector.Common/Outputs/CppDeclarations.cs | 9 ++++++++- Il2CppInspector.Common/Outputs/IDAPythonScript.cs | 1 + Il2CppInspector.Common/Outputs/Namespace.cs | 9 ++++++++- .../Outputs/UnityHeaders/UnityHeader.cs | 9 ++++++++- .../Outputs/UnityHeaders/UnityVersion.cs | 9 ++++++++- Il2CppInspector.Common/Reflection/ConstructorInfo.cs | 1 + Il2CppInspector.Common/Reflection/Il2CppModel.cs | 1 + Il2CppInspector.Common/Reflection/MethodBase.cs | 1 + Il2CppInspector.Common/Reflection/MethodInfo.cs | 1 + Il2CppInspector.Common/Reflection/TypeInfo.cs | 1 + Il2CppInspector.Common/Reflection/TypeRef.cs | 9 ++++++++- Il2CppTests/TestIDAOutput.cs | 9 ++++++++- Il2CppTests/TestSources/CSharp1.cs | 7 +++++++ Il2CppTests/TestSources/CSharp2.cs | 7 +++++++ Il2CppTests/TestSources/CSharp3.cs | 7 +++++++ Il2CppTests/TestSources/VTablesAndLayout.cs | 7 +++++++ 17 files changed, 83 insertions(+), 6 deletions(-) diff --git a/Il2CppInspector.Common/IL2CPP/MetadataUsage.cs b/Il2CppInspector.Common/IL2CPP/MetadataUsage.cs index 306e3df..17c1d27 100644 --- a/Il2CppInspector.Common/IL2CPP/MetadataUsage.cs +++ b/Il2CppInspector.Common/IL2CPP/MetadataUsage.cs @@ -1,6 +1,7 @@ /* Copyright (c) 2019-2020 Carter Bush - https://github.com/carterbush Copyright (c) 2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Outputs/CppDeclarations.cs b/Il2CppInspector.Common/Outputs/CppDeclarations.cs index 1e21a98..6deed2c 100644 --- a/Il2CppInspector.Common/Outputs/CppDeclarations.cs +++ b/Il2CppInspector.Common/Outputs/CppDeclarations.cs @@ -1,4 +1,11 @@ -using Il2CppInspector.Outputs.UnityHeaders; +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +using Il2CppInspector.Outputs.UnityHeaders; using Il2CppInspector.Reflection; using System; using System.Collections.Generic; diff --git a/Il2CppInspector.Common/Outputs/IDAPythonScript.cs b/Il2CppInspector.Common/Outputs/IDAPythonScript.cs index be9891f..0ca123e 100644 --- a/Il2CppInspector.Common/Outputs/IDAPythonScript.cs +++ b/Il2CppInspector.Common/Outputs/IDAPythonScript.cs @@ -1,5 +1,6 @@ // Copyright (c) 2019-2020 Carter Bush - https://github.com/carterbush // Copyright (c) 2020 Katy Coe - http://www.djkaty.com - https://github.com/djkaty +// Copyright 2020 Robert Xiao - https://robertxiao.ca/ // All rights reserved using System; diff --git a/Il2CppInspector.Common/Outputs/Namespace.cs b/Il2CppInspector.Common/Outputs/Namespace.cs index 03ce501..c8f734b 100644 --- a/Il2CppInspector.Common/Outputs/Namespace.cs +++ b/Il2CppInspector.Common/Outputs/Namespace.cs @@ -1,4 +1,11 @@ -using System; +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Il2CppInspector.Common/Outputs/UnityHeaders/UnityHeader.cs b/Il2CppInspector.Common/Outputs/UnityHeaders/UnityHeader.cs index a8e2252..227e0ff 100644 --- a/Il2CppInspector.Common/Outputs/UnityHeaders/UnityHeader.cs +++ b/Il2CppInspector.Common/Outputs/UnityHeaders/UnityHeader.cs @@ -1,4 +1,11 @@ -using System.Reflection; +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +using System.Reflection; using System.IO; using System.Linq; using System.Collections.Generic; diff --git a/Il2CppInspector.Common/Outputs/UnityHeaders/UnityVersion.cs b/Il2CppInspector.Common/Outputs/UnityHeaders/UnityVersion.cs index 5f540f1..f32de5b 100644 --- a/Il2CppInspector.Common/Outputs/UnityHeaders/UnityVersion.cs +++ b/Il2CppInspector.Common/Outputs/UnityHeaders/UnityVersion.cs @@ -1,4 +1,11 @@ -using System; +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +using System; using System.Text.RegularExpressions; namespace Il2CppInspector.Outputs.UnityHeaders diff --git a/Il2CppInspector.Common/Reflection/ConstructorInfo.cs b/Il2CppInspector.Common/Reflection/ConstructorInfo.cs index 4cb9518..46f607e 100644 --- a/Il2CppInspector.Common/Reflection/ConstructorInfo.cs +++ b/Il2CppInspector.Common/Reflection/ConstructorInfo.cs @@ -1,5 +1,6 @@ /* Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Reflection/Il2CppModel.cs b/Il2CppInspector.Common/Reflection/Il2CppModel.cs index 84300bd..ddc61e1 100644 --- a/Il2CppInspector.Common/Reflection/Il2CppModel.cs +++ b/Il2CppInspector.Common/Reflection/Il2CppModel.cs @@ -1,5 +1,6 @@ /* Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Reflection/MethodBase.cs b/Il2CppInspector.Common/Reflection/MethodBase.cs index c860d1d..8644b17 100644 --- a/Il2CppInspector.Common/Reflection/MethodBase.cs +++ b/Il2CppInspector.Common/Reflection/MethodBase.cs @@ -1,5 +1,6 @@ /* Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Reflection/MethodInfo.cs b/Il2CppInspector.Common/Reflection/MethodInfo.cs index 4af0ea5..bccfa58 100644 --- a/Il2CppInspector.Common/Reflection/MethodInfo.cs +++ b/Il2CppInspector.Common/Reflection/MethodInfo.cs @@ -1,5 +1,6 @@ /* Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Reflection/TypeInfo.cs b/Il2CppInspector.Common/Reflection/TypeInfo.cs index 387614c..54c3d50 100644 --- a/Il2CppInspector.Common/Reflection/TypeInfo.cs +++ b/Il2CppInspector.Common/Reflection/TypeInfo.cs @@ -1,5 +1,6 @@ /* Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca All rights reserved. */ diff --git a/Il2CppInspector.Common/Reflection/TypeRef.cs b/Il2CppInspector.Common/Reflection/TypeRef.cs index ab1b40c..4d18d9f 100644 --- a/Il2CppInspector.Common/Reflection/TypeRef.cs +++ b/Il2CppInspector.Common/Reflection/TypeRef.cs @@ -1,4 +1,11 @@ -namespace Il2CppInspector.Reflection +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +namespace Il2CppInspector.Reflection { /// /// A class which lazily refers to a TypeInfo instance diff --git a/Il2CppTests/TestIDAOutput.cs b/Il2CppTests/TestIDAOutput.cs index 3f79e7e..309ed20 100644 --- a/Il2CppTests/TestIDAOutput.cs +++ b/Il2CppTests/TestIDAOutput.cs @@ -1,4 +1,11 @@ -using System.IO; +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + +using System.IO; using Il2CppInspector.Outputs.UnityHeaders; using Il2CppInspector.Reflection; using NUnit.Framework; diff --git a/Il2CppTests/TestSources/CSharp1.cs b/Il2CppTests/TestSources/CSharp1.cs index 61abc38..5ab882d 100644 --- a/Il2CppTests/TestSources/CSharp1.cs +++ b/Il2CppTests/TestSources/CSharp1.cs @@ -1,3 +1,10 @@ +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + using System; /* C# 1.0 feature test */ diff --git a/Il2CppTests/TestSources/CSharp2.cs b/Il2CppTests/TestSources/CSharp2.cs index 5662844..db98f2f 100644 --- a/Il2CppTests/TestSources/CSharp2.cs +++ b/Il2CppTests/TestSources/CSharp2.cs @@ -1,3 +1,10 @@ +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + using System; /* C# 2.0 feature test */ diff --git a/Il2CppTests/TestSources/CSharp3.cs b/Il2CppTests/TestSources/CSharp3.cs index 950e3ed..a00930c 100644 --- a/Il2CppTests/TestSources/CSharp3.cs +++ b/Il2CppTests/TestSources/CSharp3.cs @@ -1,3 +1,10 @@ +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + using System; using System.Linq; diff --git a/Il2CppTests/TestSources/VTablesAndLayout.cs b/Il2CppTests/TestSources/VTablesAndLayout.cs index 0af0601..ee9878b 100644 --- a/Il2CppTests/TestSources/VTablesAndLayout.cs +++ b/Il2CppTests/TestSources/VTablesAndLayout.cs @@ -1,3 +1,10 @@ +/* + Copyright 2017-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + Copyright 2020 Robert Xiao - https://robertxiao.ca + + All rights reserved. +*/ + using System; /* Test virtual method calls (VTables) and class layout */