Extended maintenance of Ruby versions 1.8.7 and 1.9.2 ended on July 31, 2014. Read more
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 dl/win32/lib/win32/sspi.rb, line 196 def ==(other) if other.is_a?(SSPIResult) @value == other.value elsif other.is_a?(Fixnum) @value == @@map[other] else false end end