1 | // Licensed to the .NET Foundation under one or more agreements. |
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | |
6 | #ifndef GUIDFROMNAME_H_ |
7 | #define GUIDFROMNAME_H_ |
8 | |
9 | // GuidFromName.h - function prototype |
10 | |
11 | void CorGuidFromNameW |
12 | ( |
13 | GUID * pGuidResult, // resulting GUID |
14 | LPCWSTR wzName, // the unicode name from which to generate a GUID |
15 | SIZE_T cchName // name length in count of unicode character. |
16 | // -1 if lstrlen(wzName)+1 should be used |
17 | ); |
18 | |
19 | #endif // GUIDFROMNAME_H_ |
20 | |