# File lib/net/ssh/authentication/pageant.rb, line 109
109:       def initialize
110:         @win = Win.FindWindow("Pageant", "Pageant")
111: 
112:         if @win == 0
113:           raise Net::SSH::Exception,
114:             "pageant process not running"
115:         end
116: 
117:         @res = nil
118:         @pos = 0
119:       end