process_pid : 'process -> int Returns the process id. **/
| 548 | </doc> |
| 549 | **/ |
| 550 | int _hx_std_process_pid( Dynamic handle ) |
| 551 | { |
| 552 | vprocess *p = getProcess(handle); |
| 553 | |
| 554 | #ifdef NEKO_WINDOWS |
| 555 | return p->pinf.dwProcessId; |
| 556 | #else |
| 557 | return p->pid; |
| 558 | #endif |
| 559 | } |
| 560 | |
| 561 | void _hx_std_process_kill( Dynamic handle ) |
| 562 | { |
nothing calls this directly
no test coverage detected