Ejemplo n.º 1
0
        protected MethodDesc(IntPtr address)
        {
            int offset = 0;

            _internal = new MethodDescInternal
                        (
                tokenRemainder: address.ReadUInt16(ref offset),
                chunkIndex: address.ReadByte(ref offset),
                flags2: address.ReadByte(ref offset),
                slotNumber: address.ReadUInt16(ref offset),
                flags: address.ReadUInt16(ref offset)
                        );

            _address = address;
        }
Ejemplo n.º 2
0
 public FCallMethodDescInternalx64(MethodDescInternal methodDesc, uint dwECallID, uint padding)
 {
     _methodDesc = methodDesc;
     _dwECallID  = dwECallID;
     _padding    = padding;
 }
Ejemplo n.º 3
0
 public FCallMethodDescInternalx86(MethodDescInternal methodDesc, uint dwECallID)
 {
     _methodDesc = methodDesc;
     _dwECallID  = dwECallID;
 }