mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-12 04:01:20 +00:00
38 lines
784 B
TypeScript
38 lines
784 B
TypeScript
/** Shared low-level Win32 process, stdio, and Job Object primitives. */
|
|
|
|
export { ERROR_INSUFFICIENT_BUFFER } from './abi.ts'
|
|
export * from './errors.ts'
|
|
export {
|
|
allocPtrSlot,
|
|
allocUint32,
|
|
decodePtr,
|
|
decodeUint32,
|
|
extendWin32ProcessBindings,
|
|
isNullPtr,
|
|
loadWin32ProcessBindings,
|
|
throwLastError,
|
|
throwWin32,
|
|
} from './ffi.ts'
|
|
export type {
|
|
NativePtr,
|
|
Win32ProcessBindings,
|
|
} from './ffi.ts'
|
|
export {
|
|
closeHandleChecked,
|
|
drainPipe,
|
|
isJobEmpty,
|
|
openNamedPipeForStdio,
|
|
pollProcessExit,
|
|
spawnInheritedJobProcess,
|
|
spawnOrdinaryJobProcess,
|
|
spawnPipedProcess,
|
|
terminateJob,
|
|
waitForProcessExit,
|
|
} from './process.ts'
|
|
export type {
|
|
ChildStdioHandles,
|
|
OrdinaryProcessSpawnOptions,
|
|
SpawnedJobProcess,
|
|
SpawnedPipedProcess,
|
|
} from './process.ts'
|