ThreadLowLevel.hx 222 B

12345678910111213
  1. package python.lib;
  2. import python.lib.Tuple;
  3. private typedef TODO = Dynamic;
  4. @:pythonImport("_thread")
  5. extern class ThreadLowLevel {
  6. public static function start_new_thread(f:Void->Void, args:Tuple<Dynamic>):TODO;
  7. }