Previous attempt tried to use @:extern and @:enum for Haxe 3, but enum is fine for both, which is actually what we were using before. Keep @:extern for Haxe 3, but use enum for both
11 lines
255 B
Haxe
11 lines
255 B
Haxe
package flash.security;
|
|
|
|
@:native("flash.security.RevocationCheckSettings")
|
|
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract RevocationCheckSettings(String)
|
|
{
|
|
var ALWAYS_REQUIRED;
|
|
var BEST_EFFORT;
|
|
var NEVER;
|
|
var REQUIRED_IF_AVAILABLE;
|
|
}
|