Move DumpedMethod{,s} to de4dot.blocks namespace

This commit is contained in:
de4dot 2012-11-06 22:25:19 +01:00
parent 8d35df1fdd
commit 001b67804f
5 changed files with 6 additions and 6 deletions

View File

@ -22,6 +22,7 @@ using System.Collections.Generic;
using System.Reflection;
using System.Threading;
using dot10.DotNet;
using de4dot.blocks;
using de4dot.mdecrypt;
namespace AssemblyData {

View File

@ -18,6 +18,7 @@
*/
using dot10.DotNet;
using de4dot.blocks;
using de4dot.mdecrypt;
namespace AssemblyData {

View File

@ -17,11 +17,9 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
//TODO: DumpedMethods and DumpedMethod should be moved to dot10
using System;
namespace dot10.DotNet {
namespace de4dot.blocks {
[Serializable]
public class DumpedMethod {
public ushort mhFlags; // method header Flags

View File

@ -17,13 +17,12 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
//TODO: DumpedMethods and DumpedMethod should be moved to dot10
using System;
using System.Collections.Generic;
using dot10.DotNet.MD;
using dot10.DotNet;
namespace dot10.DotNet {
namespace de4dot.blocks {
public interface IStringDecrypter {
string decrypt(uint token);
}

View File

@ -19,6 +19,7 @@
using dot10.DotNet;
using de4dot.code.AssemblyClient;
using de4dot.blocks;
using de4dot.mdecrypt;
namespace de4dot.code.deobfuscators {