The MprConfigGetGuidName function returns the GUID name for an interface that corresponds to the specified friendly name.
DWORD MprConfigGetGuidName( HANDLE hMprConfig, // handle to router configuration PWCHAR pszFriendlyName, // friendly name for the interface PWCHAR pszBuffer, // buffer to receive GUID name DWORD dwBufferSize // size of buffer passed in );
If the function succeeds, the return value is NO_ERROR.
If the function fails, the return value is one of the following error codes.
Value | Meaning |
---|---|
ERROR_BUFFER_OVERFLOW | The buffer pointed to by pszBuffer is not large enough to hold the returned GUID name. |
ERROR_INVALID_PARAMETER | At least one of the parameters hMprConfig, pszFriendlyName, or pszBuffer is NULL. |
ERROR_NOT_FOUND | No GUID name was found that corresponds to the specified friendly name. |
Windows NT/2000: Requires Windows 2000.
Header: Declared in Mprapi.h.
Library: Use Mprapi.lib.
Router Management Reference, Router Configuration Functions, MprConfigGetFriendlyName, MprConfigServerConnect