jan_flanders

Untitled

Nov 30th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.40 KB | None | 0 0
  1. ("-swf-script-limits",Arg.String (fun sl ->
  2.             try
  3.                 swf_script_limits := Some (match ExtString.String.nsplit sl ":" with
  4.                 | [recursion_depth; script_timeout] -> (int_of_string recursion_depth, int_of_string script_timeout)
  5.                 | _ -> raise Exit)
  6.             with
  7.                 _ -> raise (Arg.Bad "Invalid SWF ScriptLimits format")
  8.         ),"<swf script limits> : define SWF script limits (recursion depth:script timeout)");
Advertisement
Add Comment
Please, Sign In to add comment