summaryrefslogtreecommitdiff
path: root/src/inc/guidfromname.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/guidfromname.h')
-rw-r--r--src/inc/guidfromname.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/inc/guidfromname.h b/src/inc/guidfromname.h
new file mode 100644
index 0000000000..2974de44aa
--- /dev/null
+++ b/src/inc/guidfromname.h
@@ -0,0 +1,19 @@
+// 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.
+
+
+#ifndef GUIDFROMNAME_H_
+#define GUIDFROMNAME_H_
+
+// GuidFromName.h - function prototype
+
+void CorGuidFromNameW
+(
+ GUID * pGuidResult, // resulting GUID
+ LPCWSTR wzName, // the unicode name from which to generate a GUID
+ SIZE_T cchName // name length in count of unicode character.
+ // -1 if lstrlen(wzName)+1 should be used
+);
+
+#endif // GUIDFROMNAME_H_