Laptop direktive hinzugefügt.
Unnötige Axen beschriftung entfernt
This commit is contained in:
@@ -80,11 +80,14 @@ namespace SanSystem
|
||||
|
||||
public bool CheckDongleVorhanden()
|
||||
{
|
||||
|
||||
#if LAPTOP
|
||||
return true;
|
||||
#else
|
||||
if (hcmse == null)
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
public string GetDongleSerial()
|
||||
@@ -113,7 +116,9 @@ namespace SanSystem
|
||||
|
||||
public bool IsLicensed(byte neededMask)
|
||||
{
|
||||
|
||||
#if LAPTOP
|
||||
return true;
|
||||
#else
|
||||
uint DongleFeature = GetFeatureMap();
|
||||
|
||||
Trace.WriteLine("DongleFeature: " + DongleFeature);
|
||||
@@ -123,6 +128,7 @@ namespace SanSystem
|
||||
if ((DongleFeatureB & neededMask) == neededMask)
|
||||
return true;
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
|
||||
Reference in New Issue
Block a user