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