aboutsummaryrefslogtreecommitdiff
path: root/Src/replicant/foundation/guid.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/replicant/foundation/guid.h')
-rw-r--r--Src/replicant/foundation/guid.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/Src/replicant/foundation/guid.h b/Src/replicant/foundation/guid.h
new file mode 100644
index 00000000..7e638c7d
--- /dev/null
+++ b/Src/replicant/foundation/guid.h
@@ -0,0 +1,35 @@
+#ifndef WASABI2_FOUNDATION_GUID_H
+#define WASABI2_FOUNDATION_GUID_H
+#pragma once
+
+#include "types.h"
+
+#if !defined(_WIN32)
+#ifdef __cplusplus
+#if !defined(GUID_EQUALS_DEFINED) || !defined(_SYS_GUID_OPERATOR_EQ_)
+#define GUID_EQUALS_DEFINED
+#include <memory.h>
+#include <string.h>
+static __inline int operator ==(const GUID &a, const GUID &b) {
+ return !memcmp(&a, &b, sizeof(GUID));
+}
+static __inline int operator !=(const GUID &a, const GUID &b) {
+ return !!memcmp(&a, &b, sizeof(GUID));
+}
+#endif //GUID_EQUALS_DEFINED
+#endif //__cplusplus
+#else
+#include <guiddef.h>
+#endif
+
+#ifdef __cplusplus
+static __inline int operator <(const GUID &a, const GUID &b) {
+ return memcmp(&a, &b, sizeof(GUID)) < 0;
+}
+#endif
+
+
+static const GUID INVALID_GUID = { 0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} };
+static const GUID GENERIC_GUID = { 0xFFFFFFFF, 0xFFFF, 0xFFFF, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF} };
+
+#endif