GetGUIDIx() 개인적인 메소드

private GetGUIDIx ( ) : uint
리턴 uint
예제 #1
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal void Read(PEReader buff)
 {
     buff.ReadZeros(2);
     name = buff.GetString();
     mvid = buff.GetGUID();
     uint junk = buff.GetGUIDIx();
     junk = buff.GetGUIDIx();
     if (Diag.DiagOn) Console.WriteLine("Reading module with name " + name + " and Mvid = " + mvid);
     ismscorlib = name.ToLower() == "mscorlib.dll";
 }
예제 #2
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal static ModuleRef ReadModuleRef(PEReader buff)
 {
     buff.ReadZeros(2);
     string name = buff.GetString();
     uint junk = buff.GetGUIDIx();
     junk = buff.GetGUIDIx();
     junk = buff.GetGUIDIx();
     ModuleRef mRef = new ModuleRef(new ModuleFile(name,null));
     mRef.ReadAsDef();
     return mRef;
 }