PERWAPI.UIntInstr.GetDeltaDistance C# (CSharp) Méthode

GetDeltaDistance() private méthode

Get the delta distance for this instruction.
The delta distance is the resulting difference of items left on the stack after calling this instruction.
private GetDeltaDistance ( ) : int
Résultat int
        internal override int GetDeltaDistance()
        {
            if (twoByteInstr) {
                return FEopDeltaDistance[instr];
            } else {
                return opDeltaDistance[instr];
            }
        }