PERWAPI.CalliSig.HasCallConv C# (CSharp) Méthode

HasCallConv() private méthode

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.
Résultat bool
        internal bool HasCallConv(CallConv callCon)
        {
            return ((callConv & callCon) == callCon);
        }