![show/hide quicksearch [+]](../../images/find.png)
Takes a return result from an SSPI function and interprets the value.
These are generally returned by InitializeSecurityContext
These are generally returned by AcquireCredentialsHandle
Good results
 
               # File win32/lib/win32/sspi.rb, line 197
def ==(other)
        if other.is_a?(SSPIResult)
                @value == other.value
        elsif other.is_a?(Fixnum)
                @value == @@map[other]
        else
                false
        end
end