cc-haxe/src/kernel/ps/Process.hx
2023-07-30 15:55:22 +02:00

10 lines
211 B
Haxe

package kernel.ps;
/**
Defines an independent process that can be run by the kernel.
**/
@:autoBuild(macros.DCEHack.DCEHack.dceInclude())
interface Process {
public function run(handle:ProcessHandle):Void;
}