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 ruby-3.1.2/ext/win32/lib/win32/sspi.rb, line 204 def ==(other) if other.is_a?(SSPIResult) @value == other.value elsif other.is_a?(Fixnum) @value == @@map[other] else false end end