mirror of
https://github.com/danog/process.git
synced 2024-12-02 17:51:46 +01:00
14 lines
231 B
PHP
14 lines
231 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Process\Internal\Windows;
|
||
|
|
||
|
final class SignalCode
|
||
|
{
|
||
|
const HANDSHAKE = 0x01;
|
||
|
const HANDSHAKE_ACK = 0x02;
|
||
|
const CHILD_PID = 0x03;
|
||
|
const EXIT_CODE = 0x04;
|
||
|
|
||
|
private function __construct() { }
|
||
|
}
|