<< Click to Display Table of Contents >> Navigation: WinLicense > WinLicense SDK > Trial Functions > WLTrialDebugCheck |
The WLTrialDebugCheck function checks if the application was protected with the option "Trial Debug Mode" enabled. This function allows you to check from your application that you are not releasing an application protected in "Trial Debug Mode" by mistake.
bool WLTrialDebugCheck(); |
function WLTrialDebugCheck():Boolean; |
Public Declare Function WLTrialDebugCheck Lib "WinLicenseSDK.dll" () As Boolean |
[C#] [DllImport(WINLICENSE_SDK_DLL, CallingConvention = CallingConvention.StdCall)] public static extern bool WLTrialDebugCheck();
[Visual Basic] <DllImport("WinlicenseSDK.dll", CallingConvention:=CallingConvention.StdCall)> Public Shared Function WLTrialDebugCheck() As Boolean End Function |
Parameters
This function has no parameters.
Return Values
If the application was protected with option "Trial Debug Mode" checked, the return value is True.
If the application was protected with option "Trial Debug Mode" unchecked, the return value is False.