mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
29 lines
606 B
TypeScript
29 lines
606 B
TypeScript
/** Low-level Win32 process, stdio, and Job Object primitives used by the Windows ACL sandbox. */
|
|
|
|
export { ERROR_INSUFFICIENT_BUFFER } from './abi.ts'
|
|
export * from './errors.ts'
|
|
export {
|
|
allocPtrSlot,
|
|
allocUint32,
|
|
decodePtr,
|
|
decodeUint32,
|
|
extendWin32ProcessBindings,
|
|
isNullPtr,
|
|
throwLastError,
|
|
throwWin32,
|
|
} from './ffi.ts'
|
|
export type {
|
|
NativePtr,
|
|
Win32ProcessBindings,
|
|
} from './ffi.ts'
|
|
export {
|
|
drainPipe,
|
|
spawnInheritedJobProcess,
|
|
spawnPipedProcess,
|
|
waitForProcessExit,
|
|
} from './process.ts'
|
|
export type {
|
|
SpawnedJobProcess,
|
|
SpawnedPipedProcess,
|
|
} from './process.ts'
|