| 1824 | } |
| 1825 | |
| 1826 | void kwsysProcessSetupSharedPipe(DWORD nStdHandle, PHANDLE handle) |
| 1827 | { |
| 1828 | /* Close the existing handle. */ |
| 1829 | kwsysProcessCleanupHandle(handle); |
| 1830 | /* Store the new standard handle. */ |
| 1831 | *handle = GetStdHandle(nStdHandle); |
| 1832 | } |
| 1833 | |
| 1834 | void kwsysProcessSetupPipeNative(HANDLE native, PHANDLE handle) |
| 1835 | { |
no test coverage detected
searching dependent graphs…