PERWAPI.ModuleRef.MakeModuleRef C# (CSharp) Method

MakeModuleRef() public static method

public static MakeModuleRef ( string name, bool entryPoint, byte hashValue ) : ModuleRef
name string
entryPoint bool
hashValue byte
return ModuleRef
        public static ModuleRef MakeModuleRef(string name, bool entryPoint, byte[] hashValue)
        {
            ModuleRef mRef = new ModuleRef(name,entryPoint,hashValue);
            return mRef;
        }