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