This is the code from subroutine ReadMode: sub ReadMode { my($mode) = $modes{$_[0]}; my($fh) = normalizehandle((@_>1?$_[1]:\*STDIN)); if(defined($mode)) { SetReadMode($mode,$fh) } elsif( $_[0] =~ /^\d/) { SetReadMode($_[0],$fh) } else { croak("Unknown terminal mode `$_[0]'"); } }
What does "SetReadMode($mode,$fh)" do? Thanks -----Original Message----- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 07, 2002 8:47 AM To: Rob Das Cc: [EMAIL PROTECTED] Subject: Re: SetReadMode doc I do not see a "SetReadMode" I see a "ReadMode".... http://search.cpan.org/author/JSTOWE/TermReadKey-2.21/ReadKey.pm http://danconia.org Rob Das wrote: > Hi All: > > I'm trying to find documentation on SetReadMode. It's in CPAN module > "Term::ReadKey", which I can't persuade to work with Perl2exe (for NT AND > Solaris AND HP-UX), so I'd like to pick out the bits of code I need and put > them in my own script. First, I'd like to understand what SetReadMode is all > about. Please point me in the right direction if possible. > > Thanks > > Rob > > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]