<< Click to Display Table of Contents >> Navigation: WinLicense > WinLicense SDK > Registration Functions > WLRegLicenseName |
The WLRegLicenseName function retrieves the license file and registry names for the expected registration license.
void WLRegLicenseName( char* pFileKeyName, char* pRegKeyName, char* pRegKeyValueName ); |
procedure WLRegLicenseName( pFileKeyName: PAnsiChar; pRegKeyName: PAnsiChar; pRegKeyValueName: PAnsiChar ); stdcall; |
Public Declare Function WLRegLicenseName Lib "WinLicenseSDK.dll" ( ByVal pFileKeyName As String, ByVal pRegKeyName As String, ByVal pRegKeyValueName As String ) As Integer |
[C#] [DllImport(WINLICENSE_SDK_DLL, CallingConvention = CallingConvention.StdCall)] public static extern bool WLRegLicenseName(StringBuilder FileKeyName, StringBuilder RegKeyName, StringBuilder RegKeyValueName);
[Visual Basic] <DllImport("WinlicenseSDK.dll", CallingConvention:=CallingConvention.StdCall)> Public Shared Function WLRegLicenseName(ByRef FileKeyName As String, ByRef RegKeyName As String, ByRef RegKeyValueName As String) As Boolean End Function |
Parameters
pFileKeyName
[out] Pointer to a buffer that will receive the name of the file key expected.
pRegKeyName
[out] Pointer to a buffer that will receive the name of the registry key expected.
RegKeyValueName
[out] Pointer to a buffer that will receive the name of the registry value key expected.
Return Values
The function has no return values.