| DCE-Perl documentation | Contained in the DCE-Perl distribution. |
DCE::UUID - Misc UUID functions
use DCE::UUID;
DCE::UUID exports the following functions:
my($uuid, $status) = uuid_create();
my($hash, $status) = uuid_hash($uuid);
Doug MacEachern <dougm@osf.org>
perl(1), DCE::Status(3), DCE::Registry(3), DCE::Login(3).
| DCE-Perl documentation | Contained in the DCE-Perl distribution. |
package DCE::UUID; use vars qw($VERSION @ISA @EXPORT); require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. @EXPORT = qw( &uuid_create &uuid_hash ); use overload '""' => sub { shift->as_string; }; $VERSION = '1.01'; bootstrap DCE::UUID; 1; __END__