ossp-pkg/uuid/uuid.h 1.14 -> 1.15
--- uuid.h 2004/01/18 20:19:23 1.14
+++ uuid.h 2004/01/19 12:15:05 1.15
@@ -30,6 +30,9 @@
#ifndef __UUID_H__
#define __UUID_H__
+/* required system headers */
+#include <string.h>
+
/* OSSP uuid version (compile-time information) */
#define UUID_VERSION 0x009204
@@ -82,8 +85,8 @@
extern uuid_rc_t uuid_destroy (uuid_t *_uuid);
/* UUID generation */
-extern uuid_rc_t uuid_nil (uuid_t *_uuid);
-extern uuid_rc_t uuid_generate (uuid_t *_uuid, unsigned int _mode, ...);
+extern uuid_rc_t uuid_load (uuid_t *_uuid, const char *_name);
+extern uuid_rc_t uuid_make (uuid_t *_uuid, unsigned int _mode, ...);
/* UUID comparison */
extern uuid_rc_t uuid_isnil (uuid_t *_uuid, int *_result);
|
|