forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
22
Kha/Tools/linux_arm64/std/flash/net/drm/DRMManager.hx
Normal file
22
Kha/Tools/linux_arm64/std/flash/net/drm/DRMManager.hx
Normal file
@ -0,0 +1,22 @@
|
||||
package flash.net.drm;
|
||||
|
||||
extern class DRMManager extends flash.events.EventDispatcher {
|
||||
function new() : Void;
|
||||
function addToDeviceGroup(deviceGroup : DRMDeviceGroup, forceRefresh : Bool = false) : Void;
|
||||
function authenticate(serverURL : String, domain : String, username : String, password : String) : Void;
|
||||
function loadPreviewVoucher(contentData : DRMContentData) : Void;
|
||||
function loadVoucher(contentData : DRMContentData, setting : String) : Void;
|
||||
function removeFromDeviceGroup(deviceGroup : DRMDeviceGroup) : Void;
|
||||
function resetDRMVouchers() : Void;
|
||||
@:ns("flash.net.drm",internal) function resetDRMVouchersInternal(isAutoReset : Bool) : Void;
|
||||
function returnVoucher(inServerURL : String, immediateCommit : Bool, licenseID : String, policyID : String) : Void;
|
||||
function setAuthenticationToken(serverUrl : String, domain : String, token : flash.utils.ByteArray) : Void;
|
||||
function storeVoucher(voucher : flash.utils.ByteArray) : Void;
|
||||
@:flash.property static var isSupported(get,never) : Bool;
|
||||
@:flash.property static var networkIdleTimeout(get,set) : Float;
|
||||
static function getDRMManager() : DRMManager;
|
||||
@:ns("flash.net.drm",internal) static function getDRMManagerInternal() : DRMManager;
|
||||
private static function get_isSupported() : Bool;
|
||||
private static function get_networkIdleTimeout() : Float;
|
||||
private static function set_networkIdleTimeout(value : Float) : Float;
|
||||
}
|
Reference in New Issue
Block a user