<< Click to Display Table of Contents >> Navigation: WinLicense > WinLicense SDK > Trial Functions > WLTrialFirstRun |
The WLTrialFirstRun function determines if an application is running in Trial mode for the first time.
bool WLTrialFirstRun(void); |
function WLTrialFirstRun():Boolean; stdcall; |
Public Declare Function WLTrialFirstRun Lib "WinLicenseSDK.dll" () As Boolean |
[C#] [DllImport(WINLICENSE_SDK_DLL, CallingConvention = CallingConvention.StdCall)] public static extern bool WLTrialFirstRun();
[Visual Basic] <DllImport("WinlicenseSDK.dll", CallingConvention:=CallingConvention.StdCall)> Public Shared Function WLTrialFirstRun() As Boolean End Function |
Parameters
This function has no parameters.
Return Values
If the application is launched for the first time and it's running in Trial mode, the return value is True, otherwise it returns False.
See Also