| Aw documentation | Contained in the Aw distribution. |
Aw::Util - ActiveWorks Connection Descriptor Module.
require Aw::Util;
my $cd = new Aw::Util;
Enhanced interface for the Aw.xs Connection Descriptor methods.
Daniel Yacob Mekonnen, Yacob@wMUsers.Com
perl(1). Aw(3).
| Aw documentation | Contained in the Aw distribution. |
package Aw::Util; BEGIN { use strict; use vars qw($VERSION); $VERSION = '0.2'; } sub getStringSeqInfo { my $result = Aw::Util::getStringSeqInfoRef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } sub getUCStringSeqInfoAsA { my $result = Aw::Util::getUCStringSeqInfoAsARef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } sub getUCStringSeqInfoAsUTF8 { my $result = Aw::Util::getUCStringSeqInfoAsUTF8Ref ( @_ ); ( wantarray ) ? @{ $result } : $result ; } sub getStructSeqInfo { my $result = Aw::Util::getStructSeqInfoRef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } ######################################################### # Do not change this, Do not put anything below this. # File must return "true" value at termination 1; ########################################################## __END__