DCE::UUID - Misc UUID functions


DCE-Perl documentation Contained in the DCE-Perl distribution.

Index


Code Index:

NAME

Top

DCE::UUID - Misc UUID functions

SYNOPSIS

Top

  use DCE::UUID;

DESCRIPTION

Top

DCE::UUID exports the following functions:

    my($uuid, $status) = uuid_create();

    my($hash, $status) = uuid_hash($uuid);

AUTHOR

Top

Doug MacEachern <dougm@osf.org>

SEE ALSO

Top

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__