Win32::Palm::Install::UsersDat - Parser for the users.dat file for Palm


Win32-Palm-Install documentation  | view source Contained in the Win32-Palm-Install distribution.

Index


NAME

Top

Win32::Palm::Install::UsersDat - Parser for the users.dat file for Palm

VERSION

Top

This document refers to version 0.2 of Win32::Palm::Install::UsersDat, released 25 september 2001.

SYNOPSIS

Top

	use Win32::Palm::Install::UsersDat;
	my $ud = Win32::Palm::Install::UsersDat->new( 'c:\Palm\users.dat' );

	foreach my $ue ( $ud->get_UserEntry() ) {
		print $ue->get_LongName . "\n";
		map {
			my $func = "get_$_";
			print "\t" . lc($_) . ": " . $ue->$func() . "\n";
		} qw( HotsyncID DirName Active Password );
	}

DESCRIPTION

Top

Based upon the text found on: http://www.geocities.com/Heartland/Acres/3216/users_dat.htm

Will parse a users.dat file and extract some information out of it. Only user information is extracted for the moment!

Constructor and initialisation

	Win32::Palm::Install::UserDat->new( $filename );

Class and Object methods

	my $ud = Win32::Palm::Install::UserDat->new( $filename );

	$ud->get_UserCount()

	@UserEntries = $ud->get_UserEntry()
	$UserEntry = $ud->get_UserEntry($index)

FILES

Top

	Win32::Palm::Install::UsersDat::UserEntry

AUTHOR

Top

Johan Van den Brande <johan@vandenbrande.com>

COPYRIGHT

Top


Win32-Palm-Install documentation  | view source Contained in the Win32-Palm-Install distribution.