Exemple #1
0
 public Dll(string path, bool simple)
     : this(path)
 {
     SimpleHeader = new SimpleDllHeader(this);
     uint offset = (uint)SimpleHeader.DllSize;
     do
     {
         DllContent dc = new DllContent(this, offset);
         offset += (uint)dc.DllChunkSize;
         Content.Enqueue(dc);
     } while (offset < Size);
 }
Exemple #2
0
 public Dll(string path, bool simple)
     : this(path)
 {
     SimpleHeader = new SimpleDllHeader(this);
     uint offset = (uint)SimpleHeader.DllSize;
     do
     {
         DllContent dc = new DllContent(this, offset);
         offset += (uint)dc.DllChunkSize;
         Content.Enqueue(dc);
     } while (offset < Size);
 }