10 lines
211 B
Haxe
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;
|
|
}
|