--- uuid.pod 2005/08/31 14:29:56 1.28
+++ uuid.pod 2005/08/31 19:20:43 1.29
@@ -246,17 +246,17 @@
Destroy UUID object I<uuid>.
-=item uuid_rc_t B<uuid_clone>(uuid_t *I<uuid>, uuid_t **I<uuid_clone>);
+=item uuid_rc_t B<uuid_clone>(const uuid_t *I<uuid>, uuid_t **I<uuid_clone>);
Clone UUID object I<uuid> and store new UUID object in I<uuid_clone>.
-=item uuid_rc_t B<uuid_isnil>(uuid_t *I<uuid>, int *I<result>);
+=item uuid_rc_t B<uuid_isnil>(const uuid_t *I<uuid>, int *I<result>);
Checks whether the UUID in I<uuid> is the I<Nil> UUID.
If this is the case, it returns I<true> in C<*>I<result>.
Else it returns I<false> in C<*>I<result>.
-=item uuid_rc_t B<uuid_compare>(uuid_t *I<uuid>, uuid_t *I<uuid2>, int *I<result>);
+=item uuid_rc_t B<uuid_compare>(const uuid_t *I<uuid>, const uuid_t *I<uuid2>, int *I<result>);
Compares the order of the two UUIDs in I<uuid1> and I<uuid2>
and returns the result in C<*>I<result>: C<-1> if I<uuid1> is
@@ -273,7 +273,7 @@
minimum expected length in I<data_len> depends on it. Valid values for
I<fmt> are B<UUID_FMT_BIN> and B<UUID_FMT_STR>.
-=item uuid_rc_t B<uuid_export>(uuid_t *I<uuid>, uuid_fmt_t I<fmt>, void **I<data_ptr>, size_t *I<data_len>);
+=item uuid_rc_t B<uuid_export>(const uuid_t *I<uuid>, uuid_fmt_t I<fmt>, void **I<data_ptr>, size_t *I<data_len>);
Exports a UUID I<uuid> into an external representation of format I<fmt>.
The data is written to the buffer at C<*>I<data_ptr> which has to
|