summaryrefslogtreecommitdiff
path: root/main/src/control/ivug-uuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/control/ivug-uuid.h')
-rwxr-xr-xmain/src/control/ivug-uuid.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/main/src/control/ivug-uuid.h b/main/src/control/ivug-uuid.h
new file mode 100755
index 0000000..e90bf6b
--- /dev/null
+++ b/main/src/control/ivug-uuid.h
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2012 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Flora License, Version 1.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.tizenopensource.org/license
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#ifndef __IVUG_UUID_H__
+#define __IVUG_UUID_H__
+
+#include "ivug-common.h"
+#include <stdbool.h>
+
+#ifdef _USE_MEDIAINFO_STRINGID_
+ #define INVALID_UUID ((UUID)NULL)
+#else
+ #define INVALID_UUID ((UUID)-1)
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+UUID uuid_assign(UUID id);
+
+void uuid_free(UUID id);
+
+int uuid_compare(UUID id1, UUID id2);
+
+const char *uuid_getchar(UUID id);
+
+UUID uuid_getuuid(const char *szID);
+
+bool uuid_is_valid(UUID id);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // __IVUG_UUID_H__
+