PERWAPI.CalliSig.HasCallConv C# (CSharp) Method

HasCallConv() private method

Check to see if the method signature has a particular calling convention.
private HasCallConv ( CallConv callCon ) : bool
callCon CallConv The convention to check to see if the method has.
return bool
        internal bool HasCallConv(CallConv callCon)
        {
            return ((callConv & callCon) == callCon);
        }