Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Native/System.Private.CoreLib.Native/pal_guid.cpp')
-rw-r--r--src/Native/System.Private.CoreLib.Native/pal_guid.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/Native/System.Private.CoreLib.Native/pal_guid.cpp b/src/Native/System.Private.CoreLib.Native/pal_guid.cpp
deleted file mode 100644
index 8e35d089e..000000000
--- a/src/Native/System.Private.CoreLib.Native/pal_guid.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-#include "pal_common.h"
-
-#if HAVE_LIBUUID_H
-#include <uuid/uuid.h>
-#endif
-
-#include "pal_endian.h"
-
-typedef struct _GUID {
- uint32_t Data1; // NOTE: diff from Win32, for LP64
- uint16_t Data2;
- uint16_t Data3;
- uint8_t Data4[8];
-} GUID;
-
-extern "C" void CoreLibNative_CreateGuid(GUID* pGuid)
-{
-#if HAVE_UUID_GENERATE_RANDOM
- uuid_generate_random(*(uuid_t*)pGuid);
-#elif HAVE_UUID_GENERATE
- uuid_generate(*(uuid_t*)pGuid);
-#else
-#error Don't know how to generate UUID on this platform
-#endif
-
- // Change the byte order of the Data1, 2 and 3, since uuid_generate_random and uuid_generate
- // generates them with big endian while GUIDS need to have them in little endian.
- pGuid->Data1 = SWAP32(pGuid->Data1);
- pGuid->Data2 = SWAP16(pGuid->Data2);
- pGuid->Data3 = SWAP16(pGuid->Data3);
-}