mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-12 22:31:25 -07:00
18 lines
381 B
Odin
18 lines
381 B
Odin
//+private
|
|
package os2
|
|
|
|
import win32 "core:sys/windows"
|
|
|
|
_pipe :: proc() -> (r, w: Handle, err: Error) {
|
|
sa: win32.SECURITY_ATTRIBUTES
|
|
sa.nLength = size_of(win32.SECURITY_ATTRIBUTES)
|
|
sa.bInheritHandle = true
|
|
|
|
p: [2]win32.HANDLE
|
|
if !win32.CreatePipe(&p[0], &p[1], &sa, 0) {
|
|
return 0, 0, Platform_Error{i32(win32.GetLastError())}
|
|
}
|
|
return Handle(p[0]), Handle(p[1]), nil
|
|
}
|
|
|